admin 管理员组

文章数量: 887021


2024年2月26日发(作者:带机的电器)

java使用DateFormat类,转换时间格式

显示源文件复制到剪贴板打印关于

1.

2.

3.

4.

5.

6.

7.

8.

9.

import ;

import rmat;

/**

* 格式化时间类

* = 0

* T = 2

* = 1

* = 2

10. * = 3

11. */

12.

13. public class FormatDate{

14. public static void main(String []args){

15. Date d = new Date();

16. String s;

17.

18. /** Date类的格式: Sat Apr 16 13:17:29 CST 2005 */

19. n(d);

20.

21. n("******************************************");

22.

23. /** getDateInstance() */

24. /** 输出格式: 2005-4-16 */

25. s = eInstance().format(d);

26. n(s);

27.

28. /** 输出格式: 2005-4-16 */

29. s = eInstance(T).format(d);

30. n(s);

31.

32. /** 输出格式: 2005年4月16日 星期六 */

33. s = eInstance().format(d);

34. n(s);

35.

36. /** 输出格式: 2005-4-16 */

37. s = eInstance().format(d);

38. n(s);

39.

40. /** 输出格式: 05-4-16 */

41. s = eInstance().format(d);

42. n(s);

43.

44. n("******************************************");

45. }

46. }


本文标签: 格式 输出 转换 源文件