将String对象转换为Date对象

时间:2015-11-26 20:59:13

标签: java

您好我正在将此字符串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

的字符串

它给了我例外,我不知道为什么。

1 个答案:

答案 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电话中......