`
tidy_lee
  • 浏览: 1164 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表

日期格式化

    博客分类:
  • Java
//  準備輸出的格式,如:星期四 2009/01/01SimpleDateFormat sdf = new SimpleDateFormat("E yyyy/MM/dd");//  利用 DateFormat 來parse 日期的字串DateFormat df = DateFormat.getDateInstance();Date date = df.parse("2009/1/1");Calendar calendar = Calendar.getInstance();calendar.setTime(date);System.out.printl ...

XML 特殊字符

    博客分类:
  • xml
XML中既特殊字符: < > & ' " Java 转换 语句: output = output.replaceAll("&", "&amp;");  output = output.replaceAll("<", "&lt;");  output = output.replaceAll(">", "&gt;"); output = output.replaceAll("'" ...
Global site tag (gtag.js) - Google Analytics