我正在尝试使用Java获取计算机的时间并使用SimpleDateFormat
对象以特定顺序对其进行格式化,但它不会格式化;请帮忙。
这是我的代码:
java.util.Date parsedDate = null;
try {
DateFormat dateFormat = new SimpleDateFormat("HH:mm");
parsedDate = dateFormat.parse(dateFormat.format(new java.util.Date()));
}catch(ParseException e){
}
Timestamp timestamp = new java.sql.Timestamp(parsedDate.getTime());
答案 0 :(得分:1)
LocalTime
.now( ZoneId.of( "Pacific/Auckland" ) )
.toString()
您正在使用现在由现代java.time类取代的麻烦的旧版遗留类。完全避免使用旧课程。
获取UTC中的当前时刻,分辨率最高可达纳秒。
Instant instant = Instant.now() ;
要查看特定区域的挂钟时间,请应用时区。
ZoneId z = ZoneId.of( "America/Montreal" ) ;
ZonedDateTime zdt = instant.atone( z ) ;
要仅处理没有日期且没有时区的时间,请提取LocalTime
个对象。
LocalTime lt = zdt.toLocalTime() ;
如果通过“格式到特定顺序”表示排序......这些对象知道如何排序。不需要用于排序的字符串。
List<LocalTime> times = new ArrayList<>() ;
times.add( lt ) ;
…
Collections.sort( times ) ;
生成一个String以显示给用户。默认情况下,java.time类使用标准的ISO 8601格式来生成/解析字符串。
String output = lt.toString() ;
对于其他格式,请使用DateTimeFormatter
。
DateTimeFormatter f = DateTimeFormatter.ofPattern( "HH:mm" ) ;
String output = lt.format( f ) ;
所有这些都已在Stack Overflow上多次处理。搜索更多信息和讨论。
答案 1 :(得分:0)
嗨user8545027我修改了你的代码,它现在对我有用。我还使用ThreadLocal使SimpleDateFormat对MultiThreading安全。
package com.java;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Test {
private ThreadLocal<SimpleDateFormat> threadSafeDateFormat = new ThreadLocal<SimpleDateFormat>() {
@Override
protected SimpleDateFormat initialValue() {
return new SimpleDateFormat("HH:mm");
}
};
String formatDate() {
SimpleDateFormat format = threadSafeDateFormat.get();
String timeStamp = format.format(new Date());
return timeStamp;
}
public static void main(String[] args) {
Test test = new Test();
System.out.println(test.formatDate());
}
}
如果有任何问题,请告诉我。希望这有助于。
答案 2 :(得分:-1)
使用:
private _currentMake: Make;
public get currentMake(): Make {
return this._currentMake;
}
public set currentMake(value: Make) {
console.log("Setting currentMake", value);
this._currentMake = value;
}