duanluo
一级标题:
二级标题
粗体字
斜体字
引用说明
引用嵌套1
引用嵌套2
-
无序列表1
-
无序列表2
-
无序
- 无序2
- 无序3
- 1 有序列表1
- 2 有序列表2
中间可以强调
的文字
SimpleDateFormat.format()
public static void main(String[] args) {
String str = "2013-01-21 15:10:20";
Date date = null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd-HH:mm:ss");
try {
date = sdf.parse(str);
} catch (ParseException e) {
System.out.println(e.getMessage());
}
System.out.println(date);
System.out.println(date.getTime());
}
markdonw的一些简单使用
博客园的一些设置

表格的使用:
表格标题1 | 表格标题2 |
---|---|
表格内容11 | 表格内容12 |
表格内容21 | 表格内容22 |
表格内容31 | 表格内容32 |
网友评论