您好我正在将此字符串2015-11-26
转换为Date
对象,以便:
我正在尝试这个:
DateFormat df = new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH);
Date result=null;
try {
result = df.parse(date);
} catch (ParseException ex) {
Logger.getLogger(XmlReaderDemo.class.getName()).log(Level.SEVERE, null, ex);
}
codecurrency.setDate(result);
date
是持有2015-11-26
它给了我例外,我不知道为什么。
答案 0 :(得分:1)
您的代码运行正常:
import java.text.SimpleDateFormat;
import java.text.DateFormat;
import java.util.*;
import java.text.ParseException;
public class DateExample {
public static void main (String args[]) {
String date = "2015-11-26";
DateFormat df = new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH);
Date result = null;
try {
result = df.parse(date);
} catch (ParseException ex) {
ex.printStackTrace();
}
System.out.println("result: " + result);
}
}
我只是改了一下,所以它编译。</ p>
如果您仍然无法使用它,请发布Runnable example,以便我们提供更多更好的帮助。
这是我得到的输出:
result: Thu Nov 26 00:00:00 CST 2015
同时查看异常和代码,您可能想要移动这一行:
codecurrency.setDate(result);
在try
电话中......