摘要: import java.util.Date;import java.text.DateFormat;/** * 格式化时间类 DateFormat.FULL = 0 DateFormat.DEFAULT = 2 DateFormat.LONG = 1 * DateFormat.MEDIUM = 2 DateFormat.SHORT = 3 */public class Test { public static void main(String[] args) { Date d = new Date(); String s; /** Date类的格... 阅读全文
posted @ 2013-11-12 14:28 X.Y 阅读(1049) 评论(1) 推荐(0) 编辑