本文将介绍具有TimeZone的SimpleDateFormat的详细情况,特别是关于timezone有哪些的相关信息。我们将通过案例分析、数据研究等多种方式,帮助您更全面地了解这个主题,同时也将涉及
本文将介绍具有TimeZone的SimpleDateFormat的详细情况,特别是关于timezone有哪些的相关信息。我们将通过案例分析、数据研究等多种方式,帮助您更全面地了解这个主题,同时也将涉及一些关于Android上的SimpleDateFormat时区错误、Calendar TimeZone SimpleDateFormat、DateFormat 类和 SimpleDateFormat 类、DateTimeFormatter与SimpleDateFormat的知识。
本文目录一览:- 具有TimeZone的SimpleDateFormat(timezone有哪些)
- Android上的SimpleDateFormat时区错误
- Calendar TimeZone SimpleDateFormat
- DateFormat 类和 SimpleDateFormat 类
- DateTimeFormatter与SimpleDateFormat
具有TimeZone的SimpleDateFormat(timezone有哪些)
我正在尝试从java.util.Date格式化日期。我需要这种格式:
2016-06-10T13:38:13.687+02:00
。
如何从标准日期格式正确转换
May 04 09:51:52 CDT 2009
?
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd''T''HH:mm:ss z", Locale.getDefault());sdf.format(new Date());
不幸的是,这段代码没有返回值+02:00
。
答案1
小编典典只需将z转到upperCase
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd''T''HH:mm:ss Z", Locale.getDefault()); sdf.format(new Date());
结果:2016-06-10T13:53:22 +0200
Android上的SimpleDateFormat时区错误
我一直在尝试隔离应用程序中的错误。我成功产生了以下“谜语”:
SimpleDateFormat f1 = new SimpleDateFormat("yyyy-MM-dd''T''HH:mm:ssZ");SimpleDateFormat f2 = new SimpleDateFormat("yyyy-MM-dd''T''HH:mm:ssZ");Date d = f1.parse("2012-01-01T00:00:00+0700");String s1 = f1.format(d); // 2011-12-31T18:00:00+0700String s2 = f2.format(d); // 2011-12-31T18:00:00+0100
在Android API 7上 运行此代码时,我得到了注释中的值(是的,是的)。此行为取决于特定的Java实现。
我的问题是:
- 为什么s1不等于s2?
- 更重要的是, 为什么s1不正确? 虽然
s2
指向适当的时间点,s1
但没有。Android的SimpleDateFormat实现中似乎存在一个错误。
问题1 的答案 : 请参阅BalusC的答案:
- [使用之后
SimpleDateFormat#parse
]可能需要恢复以前通过调用setTimeZone设置的任何TimeZone值,以进行进一步的操作。
问题2 的答案 : 参见wrygiel(我自己)的答案。
- 这是由于Android 2.1(API 7)中的错误所致。
答案1
小编典典这在javadoc中提到DateFormat#parse()
:
根据给定的解析位置解析日期/时间字符串。例如,一个时间文本
"07/10/96 4:5 PM,PDT"
将被解析为一个等效于的日期Date(837039900000L)
。默认情况下,解析是宽松的:如果输入的格式不是此对象的format方法使用的格式,但仍可以将其解析为日期,则解析成功。客户可以通过致电坚持严格遵守该格式
setLenient(false)
。此解析操作使用
calendar
生成一个Date
。结果,取决于子类的实现,calendar''s
日期时间字段和TimeZone
值可能已被覆盖。TimeZone
先前已通过调用设置的任何值setTimeZone
可能需要恢复以进行进一步的操作。
注意最后一段。遗憾的是它并不能解释 的时候 正是这一点会发生。要解决您的特定问题,您需要在格式化操作之前明确设置所需的时区。
关于SimpleDateFormat
其自身的可变性,这已经有很多年了。您永远不应将其实例创建并分配为静态或类变量,而应始终将其作为方法(线程局部变量)。
Calendar TimeZone SimpleDateFormat
关于Calendar类的使用可参考:Java Calendar类的使用总结
获取日历(Calendar):java.util.Calendar#getInstance()
获取时区TimeZone:
TimeZone.getTimeZone("GMT+00:00"); 或:TimeZone.getTimeZone("UTC"); TimeZone.getTimeZone("GMT+08:00"); 或:TimeZone.getTimeZone("CTT"); 或:TimeZone.getTimeZone("Asia/Shanghai");
ZoneID可参考:java.time.ZoneId#SHORT_IDS
default TimeZone设定:
1、java.util.TimeZone#setDefault(TimeZone zone)
2、VM options:-Duser.timezone=UTC
语言环境Locale:java.util.Locale#SIMPLIFIED_CHINESE(中国大陆)
Calendar calendar = Calendar.getInstance(); Calendar calendar = Calendar.getInstance("UTC"); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT+08:00")); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("Asia/Shanghai")); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("CTT")); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("CTT"), Locale.SIMPLIFIED_CHINESE); calendar.set(Calendar.YEAR, 2099); calendar.get(Calendar.HOUR_OF_DAY); //可以获取传入TimeZone对应的时间 calendar.getTime(); //获取的依然是defaultTimeZone对应的时间
java.util.Calendar#getTime 源码: public final Date getTime() { return new Date(getTimeInMillis()); } 因此,通过calendar.getTime()获取的依然是defaultTimeZone对应的时间
SimpleDateFormat转变时区:
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); format.setTimeZone(TimeZone.getTimeZone("CTT")); format.format(new Date()); format.format(calendar.getTime());
DateFormat 类和 SimpleDateFormat 类
1.DateFormat 类
花式显示时间和日期。
而且在本机 win10+eclipse 的环境下默认显示当前地区时间。
具体为什么暂时不用管,先记下这个怎么用哈哈哈!贼棒!
import java.text.DateFormat;
import java.util.Date;
public class XJBTEST {
public static void main(String[] args) {
// TODO Auto-generated method stub
DateFormat df1=null;
DateFormat df2=null;
df1 =DateFormat.getDateInstance();
df2 =DateFormat.getDateTimeInstance();
System.out.println("Date"+df1.format(new Date()));
System.out.println("DateTime"+df2.format(new Date()));
}
}
1.SimpleDateFormat 类
花式完成日期的显示格式化。
import java.text.SimpleDateFormat;
import java.util.Date;
public class XJBTEST {
public static void main(String[] args) {
// TODO Auto-generated method stub
String Dataexample="2017-6-12 16:31:13";// 随便打个时间做模板
String Dataorigin="yyyy-MM-dd HH:mm:ss";// 格式
String Datanow="yyyy 年 MM 月 dd 日 HH 时 mm 分 ss 秒";// 目标格式
SimpleDateFormat sdf1=new SimpleDateFormat (Dataorigin);// 实例化模板
SimpleDateFormat sdf2=new SimpleDateFormat (Datanow);// 同上
Date d=null;
try
{
d=sdf1.parse(Dataexample);
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println (sdf2.format (d));// 打印日期为新格式
}
}
一开始老出现问题,结果发现是因为 格式 那一行的字母是不可以 XJB 用的,必须严格按照人家设置好的格式来弄。
这个是粘贴别人的,英文首字母,很好记。
DateTimeFormatter与SimpleDateFormat
日期格式化类:DateTimeFormatter与SimpleDateFormat
一、SimpleDateFormat类
- SimpleDateFormat是用于以对语言环境敏感的方式格式化和解析日期的具体类。
- SimpleDateFormat类的构造方法
NO | 构造器 | 描述 |
---|---|---|
1 | SimpleDateFormat() | SimpleDateFormat使用默认FORMAT语言环境的默认模式和日期格式符号 构造一个。 |
2 | SimpleDateFormat(Stringpattern) | SimpleDateFormat使用给定的模式和默认FORMAT语言环境的默认日期格式符号 构造一个。 |
3 | SimpleDateFormat(Stringpattern,DateFormatSymbolsformatSymbols) | SimpleDateFormat使用给定的模式和日期格式符号构造一个。 |
4 | SimpleDateFormat(Stringpattern,Localelocale) | SimpleDateFormat使用给定语言环境和给定语言环境的默认日期格式符号构造一个。 |
SimpleDateFormat为什么不是线程安全的?
- SimpleDateFormat类的方法没有使用synchronized来给共享变量加锁。
- SimpleDateFormat继承于DateFormat,下面我们看看我们用来格式化的format()方法的部分源码
- DateFormat.java
public final String format(Date date)
{
return format(date, new StringBuffer(),
DontCareFieldPosition.INSTANCE).toString();
}
public abstract StringBuffer format(Date date, StringBuffer toAppendTo,
FieldPosition fieldPosition);
- SimpleDateFormat.java
@Override
public StringBuffer format(Date date, StringBuffer toAppendTo,
FieldPosition pos)
{
// 如此轻易地使用内部变量,肯定不能线程安全
// 线程都对pos进行写操作,必然会影响其他线程的读操作
pos.beginIndex = pos.endIndex = 0;
return format(date, toAppendTo, pos.getFieldDelegate());
}
private StringBuffer format(Date date, StringBuffer toAppendTo,
FieldDelegate delegate) {
// Convert input date to time field list
// 这里已经彻底毁坏线程的安全性
calendar.setTime(date);
boolean useDateFormatSymbols = useDateFormatSymbols();
for (int i = 0; i < compiledPattern.length; ) {
int tag = compiledPattern[i] >>> 8;
int count = compiledPattern[i++] & 0xff;
if (count == 255) {
count = compiledPattern[i++] << 16;
count |= compiledPattern[i++];
}
switch (tag) {
case TAG_QUOTE_ASCII_CHAR:
toAppendTo.append((char)count);
break;
case TAG_QUOTE_CHARS:
toAppendTo.append(compiledPattern, i, count);
i += count;
break;
default:
subFormat(tag, count, delegate, toAppendTo, useDateFormatSymbols);
break;
}
}
return toAppendTo;
}
看源码不用全部看,只需要看重点,不然你会很难受,很耗费时间。SimpleDateFormat类中的format方法的一段代码calendar.setTime(date);
,从这我们可以看出来,如果我们把SimpleDateFormat定义成static成员变量,那么多个thread之间会共享这个SimpleDateFormat对象, 所以Calendar对象也会被共享。那么当有线程A,B操作该方法时,A线程已经给Calendar对象setTime了,但是这时A线程让出了cpu被B线程抢占了,这时B线程在给Calendar对象setTime一个值,然后A线程获得cpu处理,这时A线程以为使用的是它给setTime的值,其实这里的值已经被B线程更改了。这里就会出现线程不安全,因为这里的处理对象都被两个或者更多的线程公用,就会出现线程不安全,所以我们在开发时,尽量使用内部变量,不共享的变量。 3. 实例
package www.com.lining.dateformate;
import java.text.SimpleDateFormat;
import java.util.Locale;
public class DateTimeFormateTest1 {
private static SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
private static String date[] = { "01-Jan-1999", "09-Jan-2000", "08-Jan-2001", "07-Jan-2002", "06-Jan-2003",
"05-Jan-2004", "04-Jan-2005", "03-Jan-2006", "02-Jan-2007" };
public static void main(String[] args) {
for (int i = 0; i < date.length; i++) {
final int temp = i;
new Thread(new Runnable() {
@Override
public void run() {
try {
while (true) {
String str1 = date[temp];
String str2 = sdf.format(sdf.parse(str1));
System.out.println(Thread.currentThread().getName() + ", " + str1 + "," + str2);
if (!str1.equals(str2)) {
throw new RuntimeException(
Thread.currentThread().getName() + ", Expected " + str1 + " but got " + str2);
}
}
} catch (Exception e) {
throw new RuntimeException("parse failed", e);
}
}
}).start();
}
}
}
- 输出
- 一定要注意cpu的使用权都是需要去抢占的,所以就会出现多线程情况下,出现线程安全问题。
SimpleDateFormat线程不安全的解决方法
- 将SimpleDateFormat定义成局部变量,每次使用时在new 对象。但是每调用一次方法就会创建一个SimpleDateFormat对象,方法结束又要作为垃圾回收,很浪费资源。
- 加一把线程同步锁:synchronized(lock)
public class SyncDateFormatTest {
private static SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
private static String date[] = { "01-Jan-1999", "01-Jan-2000", "01-Jan-2001" };
public static void main(String[] args) {
for (int i = 0; i < date.length; i++) {
final int temp = i;
new Thread(new Runnable() {
@Override
public void run() {
try {
while (true) {
synchronized (sdf) {
String str1 = date[temp];
Date date = sdf.parse(str1);
String str2 = sdf.format(date);
System.out.println(Thread.currentThread().getName() + ", " + str1 + "," + str2);
if(!str1.equals(str2)){
throw new RuntimeException(Thread.currentThread().getName()
+ ", Expected " + str1 + " but got " + str2);
}
}
}
} catch (Exception e) {
throw new RuntimeException("parse failed", e);
}
}
}).start();
}
}
}
缺点是:每次都要等该锁释放其他的线程才能使用,性能差。 3. 使用ThreadLocal类
- 直接继承与Object类,该类提供了线程局部变量,这些变量不同于他们的普通对应物,因为访问某个变量的每个线程都有自己的局部变量,它独立于变量的初始化副本。
- 每个线程都将拥有自己的SimpleDateFormat对象副本。
public class DateUtil {
private static ThreadLocal<SimpleDateFormat> local = new ThreadLocal<SimpleDateFormat>();
public static Date parse(String str) throws Exception {
SimpleDateFormat sdf = local.get();
if (sdf == null) {
sdf = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
local.set(sdf);
}
return sdf.parse(str);
}
public static String format(Date date) throws Exception {
SimpleDateFormat sdf = local.get();
if (sdf == null) {
sdf = new SimpleDateFormat("dd-MMM-yyyy", Locale.US);
local.set(sdf);
}
return sdf.format(date);
}
}
public class ThreadLocalDateFormatTest {
private static String date[] = { "01-Jan-1999", "01-Jan-2000", "01-Jan-2001" };
public static void main(String[] args) {
for (int i = 0; i < date.length; i++) {
final int temp = i;
new Thread(new Runnable() {
@Override
public void run() {
try {
while (true) {
String str1 = date[temp];
Date date = DateUtil.parse(str1);
String str2 = DateUtil.format(date);
System.out.println(str1 + "," + str2);
if(!str1.equals(str2)){
throw new RuntimeException(Thread.currentThread().getName()
+ ", Expected " + str1 + " but got " + str2);
}
}
} catch (Exception e) {
throw new RuntimeException("parse failed", e);
}
}
}).start();
}
}
}
这样每个线程都有自己的副本对象SimpleDateFormat,所以每次不同的线程调用的都是自己的副本对象,不会改变其他线程的对象的。
二、DateTimeFormatter类
- jdk1.8中新增了 LocalDate 与 LocalDateTime等类来解决日期处理方法,同时引入了一个新的类DateTimeFormatter来解决日期格式化问题。
- LocalDateTime,DateTimeFormatter两个类都没有线程问题,只要你自己不把它们创建为共享变量就没有线程问题。
- 可以使用Instant代替 Date,LocalDateTime代替 Calendar,DateTimeFormatter 代替 SimpleDateFormat。
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy MM dd");
LocalDate date = LocalDate.parse("2017 06 17", formatter);
System.out.println(formatter.format(date));
- DateTimeFormatter.ofPattern(pattern)的实现
public static DateTimeFormatter ofPattern(String pattern) {
return new DateTimeFormatterBuilder().appendPattern(pattern).toFormatter();
}
public final class DateTimeFormatterBuilder extends Object
- TimeFormatterBuilder():用于创建日期时间格式化程序的生成器。
- TimeFormatterBuilder().appendPattern(pattern):将指定模式定义的元素追加到构建器,返回TimeFormatterBuilder对象。
- toFormatter():通过DateTimeFormatter使用默认语言环境创建来完成此构建器,获取DateTimeFormatter对象。
- 模式基于字母和符号的简单序列。模式用于使用ofPattern(String)和ofPattern(String, Locale)方法创建格式化程序 。例如, "d MMM uuuu"将2011-12-03的格式设置为“ 2011年12月3日”。从模式创建的格式化程序可以根据需要多次使用,它是不可变的并且是线程安全的。 例如:
LocalDate日期= LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(“ yyyy MM dd”);
字符串文本= date.format(formatter);
LocalDate parsedDate = LocalDate.parse(text,formatter);
- 其中的LocalDate和LocalDateTime都可以去查看jdk1.8往上的版本api去学习。
关于具有TimeZone的SimpleDateFormat和timezone有哪些的介绍已经告一段落,感谢您的耐心阅读,如果想了解更多关于Android上的SimpleDateFormat时区错误、Calendar TimeZone SimpleDateFormat、DateFormat 类和 SimpleDateFormat 类、DateTimeFormatter与SimpleDateFormat的相关信息,请在本站寻找。
本文标签: