我有一个类似的代码
Customer_Todo_Master customerTodo=new Customer_Todo_Master();
customerTodo.setCALCDATE(String type);
这里
setCALCDATE
是日历类型。如何为该setCALCDATE()
设置字符串? 最佳答案
使用SimpleDateFormat类:
String str="your string rep of cal";
Calendar cal = Calendar.getInstance();
cal.setTime(new SimpleDateFormat("your date format").parse(str));
customerTodo.setCALCDATE(cal);
关于java - 将字符串设置为日历类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15069671/