Commit be88e03a44a9a55def331470dc2a537a613e26ea

Authored by zhaowg
1 parent 27495706

电信IOT插件

zteits-nbiot/src/main/java/com/zteits/nbiot/decoder/Utilty.java
@@ -2,6 +2,7 @@ package com.zteits.nbiot.decoder; @@ -2,6 +2,7 @@ package com.zteits.nbiot.decoder;
2 2
3 3
4 import java.util.Arrays; 4 import java.util.Arrays;
  5 +import java.util.Date;
5 6
6 public class Utilty { 7 public class Utilty {
7 8
@@ -92,4 +93,10 @@ public class Utilty { @@ -92,4 +93,10 @@ public class Utilty {
92 } 93 }
93 return s; 94 return s;
94 } 95 }
  96 +
  97 + public static void main(String[] args) {
  98 + Date dd = new Date(1469680927*1000);
  99 +
  100 + System.out.println(dd);
  101 + }
95 } 102 }