摘要:
/** * 随机读取文件内容 */ public static void readFileByRandomAccess(String fileName) { RandomAccessFile randomFile = null; try { System.out.println("随机读取一段文件内 阅读全文
摘要:
/*将int转为低字节在前,高字节在后的byte数组 /*将int转为低字节在前,高字节在后的byte数组 b[0] = 11111111(0xff) & 01100001 b[0] = 11111111(0xff) & 01100001 b[1] = 11111111(0xff) & (n >> 阅读全文