博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java实现10s时间的输出和日期格式
阅读量:6703 次
发布时间:2019-06-25

本文共 1346 字,大约阅读时间需要 4 分钟。

使用线程,输出连续10s的时间,按要求格式:

package ca.bb;import java.text.SimpleDateFormat;import java.util.Locale;/** * 时间计数类 * */public class Timer {/** * 实现10s时间的输出 * */	public static void timer(){		int count = 0;		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");		while(count < 10){			try {				Thread.sleep(1000);				System.out.println(sdf.format(System.currentTimeMillis()));				count++;			} catch (InterruptedException e) {				System.out.println("Thread Interrupted Exception"+e.getMessage());			}		}	}	public static void main(String[] args) {		timer();		long currentTime = System.currentTimeMillis();		//大写E:表示星期几;大写S:表示毫秒;小写a:表示上下午		//大写HH:表示24小时制,小写表示12制		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:S E a");		SimpleDateFormat sdf1 = new SimpleDateFormat("MMM d,yyyy KK:mm:ss a");		//MMM:月份 local获取地区		SimpleDateFormat sdf2 = new SimpleDateFormat("MMM d,yyyy KK:mm:ss a",Locale.ENGLISH);		System.out.println(sdf.format(currentTime));		System.out.println(sdf1.format(currentTime));		System.out.println(sdf2.format(currentTime));	}}
此处为中国,输出为:

2015-05-06 23:17:31

2015-05-06 23:17:32
2015-05-06 23:17:33
2015-05-06 23:17:34
2015-05-06 23:17:35
2015-05-06 23:17:36
2015-05-06 23:17:37
2015-05-06 23:17:38
2015-05-06 23:17:39
2015-05-06 23:17:40
2015-05-06 23:17:40:524 星期三 下午
五月 6,2015 11:17:40 下午
May 6,2015 11:17:40 PM

转载地址:http://rjzlo.baihongyu.com/

你可能感兴趣的文章
spark groupByKey 也是可以filter的
查看>>
sqlmap使用笔记
查看>>
集合类接口IEnumerable,IEnumerator,ICollection,IList,IDictionary理解
查看>>
tkinter的GUI设计:界面与逻辑分离(二)-- 菜单栏
查看>>
Visual Studio DSL 入门 8---创建状态机元数据模型
查看>>
如何讓 iOS UIWebView 連線時傳送自訂 Cookie 的方法[转]
查看>>
LiDAR Textbook & Automated Road Network Extraction
查看>>
java并行体系结构
查看>>
探索ASP.NET MVC5系列之~~~5.缓存篇(页面缓存+二级缓存)
查看>>
ArcGIS Javascript API 1.2 Released
查看>>
命令行构建Unity项目
查看>>
C# ArrayList(数组列表)
查看>>
新近碰到的病毒(TR.Spy.Babonock.A)
查看>>
Eliminate Witches!
查看>>
ToString格式化
查看>>
HDU 4819 Mosaic D区段树
查看>>
js小技巧
查看>>
拖动条SeekBar及星级评分条
查看>>
分享20个Android游戏源码,希望大家喜欢哈!
查看>>
Metro Style App开发快速入门 之文件选择总结
查看>>