zzq-include
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();

 

分类:

技术点:

相关文章:

  • 2021-12-06
  • 2021-10-21
  • 2021-06-24
  • 2021-12-06
  • 2021-12-06
  • 2022-12-23
猜你喜欢
  • 2021-12-06
  • 2021-12-06
  • 2021-04-03
  • 2022-01-13
  • 2022-01-29
  • 2021-12-06
相关资源
相似解决方案