我在尝试将字符串转换为时间戳时遇到问题。我有一个日期格式为yyyy-MM-dd
的数组,我想更改为yyyy-MM-dd HH:mm:ss.SSS
的格式。因此,我使用以下代码:
final String OLD_FORMAT = "yyyy-MM-dd";
final String NEW_FORMAT = "yyyy-MM-dd HH:mm:ss.SSS";
String oldDateString = createdArray[k];
String newDateString;
DateFormat formatter = new SimpleDateFormat(OLD_FORMAT);
Date d = formatter.parse(oldDateString);
((SimpleDateFormat) formatter).applyPattern(NEW_FORMAT);
newDateString = formatter.format(d);
System.out.println(newDateString);
Timestamp ts = Timestamp.valueOf(newDateString);
System.out.println(ts);
我得到以下结果。
但是当我尝试简单地做
String text = "2011-10-02 18:48:05.123";
ts = Timestamp.valueOf(text);
System.out.println(ts);
我得到正确的结果:
你知道我可能做错了吗?
谢谢您的帮助。
最佳答案
请按照以下步骤获得正确的结果:
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS");
Date parsedDate = dateFormat.parse(yourString);
Timestamp timestamp = new java.sql.Timestamp(parsedDate.getTime());
} catch(Exception e) { //this generic but you can control another types of exception
// look the origin of excption
}
请注意
.parse(String)
可能会抛出 ParseException
。关于java - Java:将字符串转换为时间戳,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18915075/