标签:random html span new rand style for read pre
RandomAccessFile randomAccessFile = new RandomAccessFile("E:/test1.html", "r"); RandomAccessFile w = new RandomAccessFile("E:/test12.html", "rw"); byte[] b = new byte[2]; int i = 0; for (; (i = randomAccessFile.read(b)) != -1; ) { w.write(b); } randomAccessFile.close(); w.close();
标签:random html span new rand style for read pre
原文地址:https://www.cnblogs.com/zzq-include/p/12178150.html