摘要:
public boolean integrityCheck(String weatherStr, String checkSum) { int ch = weatherStr.charAt(0); for (int i = 1; i < weatherStr.length(); i++) { ch 阅读全文
摘要:
public LocalDateTime convertUTCToLocalTime(String timeStamp) { Long timeLong = Long.parseLong(timeStamp) * 1000L; Date timeDate = new java.util.Date(t 阅读全文