随机数
1 | public static String getStringRandom(int length) { |
日期时间类
当前毫秒数 System.currentTimeMillis()
格式化时间
1 | Date date = new Date(); |
6小时后的时间
1 | Date date = new Date(); |
日期转时间戳
1 | System.out.println(Calendar.getInstance().getTimeInMillis()); |
时间戳转日期
1 | Date date = new Date(System.currentTimeMillis()); |
jackson
Jackson提供了一系列注解,方便对JSON序列化和反序列化进行控制
- @JsonIgnore 此注解用于属性上,作用是进行JSON操作时忽略该属性。
- @JsonFormat 此注解用于属性上,作用是把Date类型直接转化为想要的格式,如@JsonFormat(pattern = “yyyy-MM-dd HH-mm-ss”)。
- @JsonProperty 此注解用于属性上,作用是把该属性的名称序列化为另外一个名称,如把trueName属性序列化为name,@JsonProperty(“name”)。
对象转 JSON
ObjectMapper是JSON操作的核心,Jackson的所有JSON操作都是在ObjectMapper中实现。
ObjectMapper有多个JSON序列化的方法,可以把JSON字符串保存File、OutputStream等不同的介质中。
- writeValue(File arg0, Object arg1)把arg1转成json序列,并保存到arg0文件中。
- writeValue(OutputStream arg0, Object arg1)把arg1转成json序列,并保存到arg0输出流中。
- writeValueAsBytes(Object arg0)把arg0转成json序列,并把结果输出成字节数组。
- writeValueAsString(Object arg0)把arg0转成json序列,并把结果输出成字符串。
1 | ObjectMapper mapper = new ObjectMapper(); |
JSON 转对象
1 | String json = ... |
enum 枚举
枚举定义
1 | public enum Color { |
枚举使用
1 | Color c = Color.GREEN; |
结果
1 | super=GREEN i=2 n=绿色 |
HTTP 请求
- 使用原生
HttpURLConnection
- 使用
HTTPClient
这里使用 HttpURLConnection
实现 POST请求
, 如果是GET请求
则去掉 param
和 OutputStream
即可
1 | public static String doPost(String httpUrl, String param) { |
IO
- 读入
InputStream.read
- 写出
OutputStream.write
文件下载 在线打开
1 | File f = new File(filePath); |
与 while 的对比
1 | InputStream fis = new BufferedInputStream(new FileInputStream(path)); |