码迷,mamicode.com
首页 > 其他好文 > 详细

随机文件读写

时间:2020-01-10 22:28:54      阅读:97      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!