SimpleDateFormat-多线程问题
2018-09-05 07:48:06来源:博客园 阅读 ()
SimpleDateFormat-多线程问题:
SimpleDateFormat类在多线程环境下中处理日期,极易出现日期转换错误的情况
1 import java.text.ParseException; 2 import java.text.SimpleDateFormat; 3 import java.util.Date; 4 5 /** 6 * 线程类 7 */ 8 public class MyThread extends Thread { 9 10 private SimpleDateFormat sdf; 11 private String dateString; 12 13 public MyThread(SimpleDateFormat sdf,String dateString) { 14 this.sdf = sdf; 15 this.dateString = dateString; 16 } 17 18 @Override 19 public void run() { 20 try { 21 Date dateRef = sdf.parse(dateString); 22 String newDateString = sdf.format(dateRef).toString(); 23 if(!newDateString.equals(dateString)) { 24 System.out.println("ThreadName = " + Thread.currentThread().getName() 25 + "报错了 日期字符串:" + dateString + "转换成日期为:" + newDateString); 26 } 27 } catch (ParseException e) { 28 e.printStackTrace(); 29 } 30 } 31 }
1 import java.text.SimpleDateFormat; 2 3 public class Test { 4 5 /** 6 * 测试单例的SimpleDateFormat类在多线程环境下中处理日期,极易出现日期转换错误的情况 7 */ 8 public static void main(String[] args) { 9 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); 10 String[] dateStringArray = new String[] { 11 "2000-01-01","2000-01-02","2000-01-03", 12 "2000-01-04","2000-01-05","2000-01-06", 13 "2000-01-07","2000-01-08","2000-01-09", 14 "2000-01-10" 15 }; 16 17 MyThread[] threadArray = new MyThread[10]; 18 for (int i = 0; i < 10; i++) { 19 threadArray[i] = new MyThread(sdf, dateStringArray[i]); 20 } 21 for (int i = 0; i < 10; i++) { 22 threadArray[i].start(); 23 } 24 } 25 }
运行之后会输出很多的错误信息!
解决多线程出现的问题-为每个线程实例一个SimpleDateFormat:
1 import java.text.ParseException; 2 import java.util.Date; 3 4 /** 5 * 线程类 6 */ 7 public class MyThread extends Thread { 8 9 private String dateString; 10 public MyThread(String dateString) { 11 this.dateString = dateString; 12 } 13 14 @Override 15 public void run() { 16 try { 17 Date dateRef = DateTools.parse("yyyy-MM-dd", dateString); 18 String newDateString = DateTools.format("yyyy-MM-dd",dateRef).toString(); 19 if(!newDateString.equals(dateString)) { 20 System.out.println("ThreadName = " + Thread.currentThread().getName() 21 + "报错了 日期字符串:" + dateString + "转换成日期为:" + newDateString); 22 } 23 } catch (ParseException e) { 24 e.printStackTrace(); 25 } 26 } 27 }
1 import java.text.ParseException; 2 import java.text.SimpleDateFormat; 3 import java.util.Date; 4 5 /** 6 * 日期格式化工具类 7 */ 8 public class DateTools { 9 10 public static Date parse(String formatPattern,String dateString) throws ParseException { 11 return new SimpleDateFormat(formatPattern).parse(dateString); 12 } 13 14 public static String format(String formatPattern,Date date) throws ParseException { 15 return new SimpleDateFormat(formatPattern).format(date).toString(); 16 } 17 }
1 public class Test { 2 3 /** 4 * 测试,运行程序后,控制台没有任何输出,也就是转换没有任何异常, 5 * 原理:创建了多个SimpleDateFormat实例 6 */ 7 public static void main(String[] args) { 8 String[] dateStringArray = new String[] { 9 "2000-01-01","2000-01-02","2000-01-03", 10 "2000-01-04","2000-01-05","2000-01-06", 11 "2000-01-07","2000-01-08","2000-01-09", 12 "2000-01-10" 13 }; 14 15 MyThread[] threadArray = new MyThread[10]; 16 for (int i = 0; i < 10; i++) { 17 threadArray[i] = new MyThread(dateStringArray[i]); 18 } 19 for (int i = 0; i < 10; i++) { 20 threadArray[i].start(); 21 } 22 } 23 }
解决多线程出现的问题-使用ThreadLocal:
1 import java.text.ParseException; 2 import java.util.Date; 3 4 /** 5 * 线程类 6 */ 7 public class MyThread extends Thread { 8 9 private String dateString; 10 public MyThread(String dateString) { 11 this.dateString = dateString; 12 } 13 14 @Override 15 public void run() { 16 try { 17 Date dateRef = DateTools.getSimpleDateFormat("yyyy-MM-dd").parse(dateString); 18 String newDateString = DateTools.getSimpleDateFormat("yyyy-MM-dd").format(dateRef).toString(); 19 if(!newDateString.equals(dateString)) { 20 System.out.println("ThreadName = " + Thread.currentThread().getName() 21 + "报错了 日期字符串:" + dateString + "转换成日期为:" + newDateString); 22 } 23 } catch (ParseException e) { 24 e.printStackTrace(); 25 } 26 } 27 }
1 import java.text.SimpleDateFormat; 2 3 /** 4 * 日期格式化工具类,使用ThreadLocal解决SimpleDateFormat非线程安全问题 5 */ 6 public class DateTools { 7 8 private static ThreadLocal<SimpleDateFormat> t1 = new ThreadLocal<>(); 9 10 public static SimpleDateFormat getSimpleDateFormat(String datePattern) { 11 SimpleDateFormat sdf = null; 12 sdf = t1.get(); 13 if(sdf == null) { 14 sdf = new SimpleDateFormat(datePattern); 15 t1.set(sdf); 16 } 17 return sdf; 18 } 19 }
1 public class Test { 2 3 /** 4 * 测试,运行程序后,控制台没有任何输出,也就是转换没有任何异常 5 * 原理:每个线程都会有自己的ThreadLocal存储全局变量,也就是每个线程都有自己的SimpleDateFormat实例 6 */ 7 public static void main(String[] args) { 8 String[] dateStringArray = new String[] { 9 "2000-01-01","2000-01-02","2000-01-03", 10 "2000-01-04","2000-01-05","2000-01-06", 11 "2000-01-07","2000-01-08","2000-01-09", 12 "2000-01-10" 13 }; 14 15 MyThread[] threadArray = new MyThread[10]; 16 for (int i = 0; i < 10; i++) { 17 threadArray[i] = new MyThread(dateStringArray[i]); 18 } 19 for (int i = 0; i < 10; i++) { 20 threadArray[i].start(); 21 } 22 } 23 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:多线程-使线程具有有序性
下一篇:Spring Cloud 微服务
- 最详细的java多线程教程来了 2020-06-08
- 系统化学习多线程(一) 2020-06-08
- 面试的时候按照这个套路回答 Java GC 的相关问题一定能过 2020-06-08
- 我可真是醉了,一个SpringBoot居然问了我30个问题 2020-06-08
- Mybaties简单实例测试及注意问题 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash