【Java】身份证号码验证
摘要:代码引用自:https://gitee.com/appleat/codes/ynrtqujv0wfgesm8ia9b547
阅读全文
posted @
2017-08-03 15:10
uTank
阅读(491)
推荐(0)
【Java】将字节转换成十六进制、BCD码输出
摘要:1 public class HexUtils { 2 3 public static void main(String[] args) { 4 byte []out = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 5 (byte)0x10...
阅读全文
posted @
2017-08-02 18:49
uTank
阅读(4005)
推荐(0)
【Java】输出目录结构
摘要:1 import java.io.*; 2 import java.io.File; 3 import java.io.IOException; 4 5 public class FileUtil { 6 7 public static void main( String[] args ) throws IOException { 8 ...
阅读全文
posted @
2017-08-01 15:50
uTank
阅读(379)
推荐(0)