ChinaUnix.net
相关文章推荐:

java格式化数据

通过使用java.text package包中提供的类型,将数字类型装换成指定的格式。 http://www.javaalmanac.com/egs/index.html // The 0 symbol shows a digit or 0 if no digit present NumberFormat formatter = new DecimalFormat("000000"); String s = formatter.format([color="#0066ff"]-1234.567); // -001235 // notice that the number was rounded up // The # symbol shows a digit or nothing if no d...

by 大马虎 - Java文档中心 - 2005-06-10 13:35:47 阅读(878) 回复(0)

相关讨论

java.text.DecimalFormat format = (java.text.DecimalFormat)java.text.DecimalFormat.getInstance(); //把浮点数格式化为两位小数的字符串 String formatDouble(double f) { format.applyPattern("####.##"); return format.format(f); } 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/55983/showart_682570.html

by qbq - Java文档中心 - 2008-05-09 15:57:17 阅读(884) 回复(0)

java日期格式化 方法一: java.util.Date date = new java.util.Date(); int year = date.getYear()+1900; int mounth = date.getMounth+1 int day = date.getDay(); System.out.println(“日期:”+year+mounth+day); 这种方法不仅写起来麻烦,而且显示也不规范。 方法二: java.util.Date date = new java.util.Date(); java.text.SimpleDateFormat format = new java.text.SimpleDateFormat(“yyyy-mm-dd”); String day = f...

by gongtao200118 - Java文档中心 - 2006-10-25 13:26:24 阅读(622) 回复(0)

import java.util.Date; import java.text.SimpleDateFormat; class dayTime { public static void main(String args[]) { Date nowTime=new Date(); System.out.println(nowTime); SimpleDateFormat time=new SimpleDateFormat("yyyy MM dd HH mm ss"); System.out.println(time.format(nowTime)); } } 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/59737/showart_1814200.ht...

by sunwei0325 - Java文档中心 - 2009-02-05 14:13:19 阅读(1061) 回复(0)

TAG: java java.text包允许通过与特定语言无关的方式格式化文本消息、日期和数值。许多人配合MessageFormat类使用资源包来为用户本地化消息。更多的人似乎使用DateFormat和SimpleDateFormat类来操作日期字符串,既用于输入也用于输出。最少见的用法似乎是使用NumberFormat类及其相关的子类DecimalFormat和ChoiceFormat。在本月的讨论中,我们将研究一下这三个未得到充分利用的类以及Currency类,看看 J2SE 1.4 已经变得有多么的...

by dragon76 - Java文档中心 - 2006-11-30 13:23:55 阅读(763) 回复(0)

类似c 的 printf("%c %5.2f ", char , float); 格式化输出在java中如何实现的呀?

by ziling - Java - 2004-06-29 12:25:55 阅读(1259) 回复(1)

SimpleDateFormat这个类来解决我们的时间格式问题。 SimpleDateFormat 是一个以与语言环境相关的方式来格式化和分析日期的具体类。它允许进行格式化(日期 -> 文本)、分析(文本 -> 日期)和规范化。SimpleDateFormat 使得可以选择任何用户定义的日期-时间格式的模式. 日期和时间模式 日期和时间格式由日期和时间模式 字符串指定。在日期和时间模式字符串中,未加引号的字母 'A' 到 'Z' 和 'a' 到 'z' 被解释为模式字母,用来表示...

by typot - Java文档中心 - 2009-08-13 18:53:53 阅读(1357) 回复(0)

1 SimpleDateFormat担当重任,怎样格式化都行 import java.util.Date; import java.text.SimpleDateFormat; public class Demo { public static void main(String[] args) { Date now=new Date(); SimpleDateFormat f=newSimpleDateFormat("今天是"+"yyyy年MM月dd日 E kk点mm分"); System.out.println(f.format(now)); f=new SimpleDateFormat("a hh点mm分ss秒"); System.out.println(f.format(now)); }...

by sunwei0325 - Java文档中心 - 2008-07-30 10:41:36 阅读(843) 回复(0)

java操作日期比较麻烦,和ASP比就可以说是相当麻烦了。。这里我把自己常用的几个操作日期相关的方法编译成一个工具类,之后就可以在工程里面直接调用这些方法了。。 代码/* * Created on 2005-6-28 * Made In GamVan */ package com.gamvan.tools; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; public class FormatDateTime { /** * 日期类操作工具 * @author Ga...

by findtec - Java文档中心 - 2008-06-06 14:18:47 阅读(985) 回复(0)

import java.text.Format; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class DateFormatToString { protected static Format format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a"); public static void main(String[] args) { Date date = new Date(); System.out.println(format.format(date)); try { String date2=...

by liding_601 - Java文档中心 - 2007-05-25 17:14:45 阅读(974) 回复(0)

原文链接 http://jalopy.sourceforge.net/ //整理 By Robin_Kin Jalopy是一个java语言的 代码格式化插件 Jalopy is a source code formatter for the Sun java programming language. It layouts any valid java source code according to some widely configurable rules; to meet a certain coding style without putting a formatting burden on individual developers. 本文来自ChinaUnix博客,如果查看原文请点:http://blo...

by RobinKin - Java文档中心 - 2005-03-27 20:39:37 阅读(1235) 回复(0)