Coding Reading Living

苏易北’s Blog 今日开张啦

BlueberryBlueberry
BookstoreBookstore

Highlight Text

hightlight red highlight green highlight blue highlight purple highlight orange highlight yellow highlight cyan highlight primary highlight success highlight danger highlight warning

Wide Image

Mercedes SLSMercedes SLS

Code Blocks

  • java
  • bash
  • js
1
2
3
4
5
6
7
8
public static void main(String[] args) {
long time = System.currentTimeMillis();
Date d = new Date(time);
Calendar c = Calendar.getInstance();
c.setTime(d);
c.add(Calendar.HOUR, 1);
System.out.println(c.getTimeInMillis());
}