Làm sao để nhập kiểu Date từ bàn phím được các bác. Ai làm rồi chỉ em với, em in biến importedDate ra null không à, em đã nhập đúng format rồi “09/09/2012”;
public void input() throws ParseException {
Scanner sc = new Scanner(System.in);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
try {
System.out.println("Id thiết bị: ");
id = sc.nextInt();
System.out.println("Tên thiết bị:");
name=sc.nextLine();
System.out.println("Manufacture:");
manufacture = sc.nextLine();
// Đây ạ
System.out.println("Ngày nhập kho:");
String day=sc.nextLine();
Date importedDate = sdf.parse(day);
} catch (Exception e) {
}