我的代码在这里出了什么问题?我无法以我想要的格式返回一个字符串......
方法调用:
incident.setTargetDate(DateUtil.formatResolutionTime(targetDateList.get(i)));
格式化:
public class DateUtil {
public static String formatResolutionTime(String startDateString) {
DateFormat df = new SimpleDateFormat("MM/dd/yyyy");
Date startDate = null;
try {
startDate = df.parse(startDateString);
} catch (ParseException e) {
e.printStackTrace();
}
String newDateString = df.format(startDate);
System.out.println(newDateString);
return newDateString;
}
}
例外:
java.text.ParseException: Unparseable date: "2017-05-26T00:00:00+02:00"
at java.text.DateFormat.parse(DateFormat.java:366)
at app.util.DateUtil.formatResolutionTime(DateUtil.java:19)
at app.controller.TableViewController.retrieveTicketsForTable(TableViewController.java:194)
at app.controller.TableViewController.initialize(TableViewController.java:139)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2548)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2441)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3214)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3175)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3148)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3124)
at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3104)
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3097)
at app.Main.start(Main.java:14)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherImpl.java:863)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
at java.lang.Thread.run(Thread.java:745)
答案 0 :(得分:3)
您需要两种格式。一个用于解析输入格式,另一个用于格式化输出。
public static String formatResolutionTime(String startDateString) {
DateFormat dfParse = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZZZZ"); //Format for parsing the Input string
DateFormat df = new SimpleDateFormat("MM/dd/yyyy"); //Format for formatting the output
Date startDate = null;
try {
startDate = dfParse.parse(startDateString);
} catch (ParseException e) {
e.printStackTrace();
}
String newDateString = df.format(startDate);
System.out.println(newDateString);
return newDateString;
}
答案 1 :(得分:3)
您收到异常Unparseable date: "2017-05-26T00:00:00+02:00"
,因为您正在尝试解析格式为"yyyy-MM-dd'T'hh:mm:ssXXX"
的字符串,但告诉格式化程序您的字符串是MM/dd/yyyy.
类型
您的输入字符串格式为"2017-05-26T00:00:00+02:00"
,并且您希望输出格式为MM/dd/yyyy
,因此在其他帖子中建议您需要两个格式化程序。
public static String formatResolutionTime(String startDateString) {
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ssXXX");
Date startDate = null;
try {
startDate = df.parse(startDateString);
} catch (ParseException e) {
e.printStackTrace();
}
DateFormat newFormatter = new SimpleDateFormat("MM/dd/yyyy");
String newDateString = newFormatter.format(startDate);
System.out.println(newDateString);
return newDateString;
}
答案 2 :(得分:2)
您正在检查MM / DD / YYYY格式的日期,但提供格式为YYYY-MM-DD的日期。
答案 3 :(得分:2)
您必须使用两个DateFormat对象:一个用于解析(input - > date),另一个用于格式化(date - > output)。
您的输入为2017-05-26T00:00:00+02:00
。让我们分解(参考SimpleDateFormat):
2017
:格式为yyyy
05
:格式为MM
26
:格式为dd
T
:日期和时间之间的分隔符,格式为'T'
00
:HH
格式的小时(不 hh
)00
:格式为mm
00
:格式为ss
+02:00
:格式XXX
所以你的SimpleDateFormat解析器模式将是
yyyy-MM-dd'T'HH:mm:ss:XXX
附加说明
在ParseException的情况下,您的代码可能会导致意外行为,实际上在try / catch块之后,您的startDate
将为null,格式化程序将尝试格式化null日期并返回结果,生成{ {1}}。
说,我的代码是:
NullPointerException
答案 4 :(得分:1)
如果没有现代答案,这个答案的线索就不会完整。
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("MM/dd/yyyy");
String newDateString = OffsetDateTime.parse(startDateString).format(dtf);
结果是
05/26/2017
我到目前为止所读到的答案都是正确的 - 而且已经过时了。 2017年,您可以跳过旧课程SimpleDateFormat
和Date
,并使用the newer Java date and time API,在这种情况下DateTimeFormatter
和OffsetDateTime
。这更合适,因为您的原始日期时间字符串符合ISO 8601,即较新的类“理解”为默认值的格式。因此,我们无需为解析提供明确的格式(如SimpleDateFormat
所需)。
答案 5 :(得分:0)
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
//System.out.println(dateFormat.format(date));
return dateFormat.format(date);
对我有用)