java的file操作2

1.java.io.RandomAccessFile:该类设计用来专门读写文件数据。其基于指针进行读写,即:总是在指针当前位置读或写字节。RAF有两种常用创建模式:"r":只读模式,"rw":读写模式。

public class RandomAccessFileDemo {

    public static void main(String[] args) throws IOException {

        /*

        * RAF常用的构造方法:

        * RandomAccessFile(String path,String mode)

        * RandomAccessFile(File file,String mode)

        * mode:操作模式,只读或读写

        */

        RandomAccessFile raf

            = new RandomAccessFile(

                "./raf.dat","rw"

            );

        /*

        * void write(int d)

        * 写出一个字节,将给定的int值对应的2进

        * 制的“低八位”写入文件

        *                            vvvvvvvv

        * 00000000 00000000 00000001 00000001

        *

        * 11111111 11111111 11111111 11111111

        */

        raf.write(1);

        System.out.println("写出完毕!");

        raf.close();

    }

}

2.读取一个字节。

public class ReadDemo {

    public static void main(String[] args) throws IOException {

        RandomAccessFile raf

            = new RandomAccessFile(

                "./raf.dat","r"

            );

        /*

        * int read()

        * 读取1个字节,并以int形式返回。

        * 若返回值为-1.则表示读取到了文件末尾。

        *                            vvvvvvvv

        * 00000000 00000000 00000000 00000001

        */

        int d = raf.read();

        System.out.println(d);

        d = raf.read();

        System.out.println(d);

        raf.close();

    }

}

3.复制文件。

public class CopyDemo {

    public static void main(String[] args) throws IOException {

        /*

        * 复制当前目录中的img.png

        */

        RandomAccessFile src

            = new RandomAccessFile(

                "./music.mp3","r"

            );

        RandomAccessFile desc

            = new RandomAccessFile(

                "./music_cp.mp3","rw"

            );

        int d = -1;//记录每次读取的字节数据

        long start = System.currentTimeMillis();

        while((d = src.read())!=-1){

            desc.write(d);

        }

        long end = System.currentTimeMillis();

        System.out.println(

            "复制完毕!耗时:"+(end-start)+"ms");

        src.close();

        desc.close();

    }

}

4.提高每次读写的数据量,减少实际读写的次数,可以提高读写效率对于硬盘(磁盘)而言,随机读写效率差是缺点。但是硬盘的块读写效率还是可以保证的。随机读写:单字节读写。块读写:一组一组字节读写。

public class CopyDemo2 {

    public static void main(String[] args) throws IOException {

        RandomAccessFile src

            = new RandomAccessFile(

                "./DG.exe","r"

            );

        RandomAccessFile desc

            = new RandomAccessFile(

                "./DG_CP1.exe","rw"

            );

        /*

        * int read(byte[] data)

        * 一次性读取给定的字节数组长度的字节量

        * 并存入到该数组中,返回值为实际读取到

        * 的字节量。若返回值为-1,则是文件末尾

        *

        * void write(byte[] data)

        * 一次性将给定的字节数组中所有字节写出

        *

        * void write(byte[] data,int index,int len)

        * 将给定的字节数组从下标index处开始的连续len

        * 个字节一次性写出

        *

        * 1 byte = 8位2进制

        * 1 kb = 1024 byte

        * 1 mb = 1024 kb

        * 1 gb = 1024 mb

        * 1 tb = 1024 gb

        *

        */

        //10 kb

        byte[] buf = new byte[1024*10];

        int len = -1;//表示每次实际读取到的字节量

        long start = System.currentTimeMillis();

        while((len = src.read(buf))!=-1){

//            desc.write(buf);

            desc.write(buf,0,len);

        }

        long end = System.currentTimeMillis();

        System.out.println("复制完毕!耗时:"+(end-start)+"ms");

        src.close();

        desc.close();

    }

}

5.读写基本类型数据,以及RAF指针的操作。

public class RandomAccessFileDemo2 {

    public static void main(String[] args) throws IOException {

        RandomAccessFile raf

            = new RandomAccessFile(

                "raf.dat","rw"

            );

        //获取指针位置

        long pos = raf.getFilePointer();

        System.out.println("pos:"+pos);

        //向文件中写入int最大值

        int max = Integer.MAX_VALUE;

        /*

        *                            vvvvvvvv

        * 01111111 11111111 11111111 11111111

        * max>>>24

        * 00000000 00000000 00000000 01111111

        */

        raf.write(max>>>24);

        System.out.println("pos:"+raf.getFilePointer());

        raf.write(max>>>16);

        raf.write(max>>>8);

        raf.write(max);

        System.out.println("pos:"+raf.getFilePointer());

        /*

        * RAF提供了方便我们写出基本类型的相关方法

        *

        */

        //一次性将给定的int值4字节全部写出

        raf.writeInt(max);

        System.out.println("pos:"+raf.getFilePointer());

        raf.writeLong(123L);

        System.out.println("pos:"+raf.getFilePointer());

        raf.writeDouble(123.123);

        System.out.println("pos:"+raf.getFilePointer());

        /*

        * void seek(long pos)

        * 移动指针到指定位置。

        */

        raf.seek(0);

        System.out.println("pos:"+raf.getFilePointer());

        //读取  EOF end of file

        int d = raf.readInt();

        System.out.println(d);

        System.out.println("pos:"+raf.getFilePointer());

        //读取long

        raf.seek(8);

        long l = raf.readLong();

        System.out.println("long:"+l);

        System.out.println("pos:"+raf.getFilePointer());

        double dou = raf.readDouble();

        System.out.println("double:"+dou);

        System.out.println("写出完毕!");

        raf.close();

    }

}

6.读取字符串。

public class ReadStringDemo {

    public static void main(String[] args) throws IOException {

        RandomAccessFile raf

            = new RandomAccessFile(

                "raf.txt","r"

            );

        byte[] data = new byte[(int)raf.length()];

        raf.read(data);

        /*

        * String提供了一组重载的构造方法

        * 可以将给定的字节数组按照指定字符集还原为字符串

        */

        String str = new String(data,"GBK");

        System.out.println(str);

        raf.close();

    }

}

7.写出字符串操作。

public class WriteStringDemo {

    public static void main(String[] args) throws IOException {

        /*

        * 在相对路径中"./"可以不写,不写默认也是

        * 在当前目录中

        */

        RandomAccessFile raf

            = new RandomAccessFile(

                "raf.txt","rw"

            );

        /*

        * String提供的方法:

        * byte[] getBytes()

        * 将当前字符串按照系统默认字符集转换为

        * 一组字节。

        *

        * byte[] getBytes(String csn)

        * 将当前字符串按照指定字符集转换为

        * 一组字节。推荐使用这种方式转换字符串

        * 因为按照系统默认字符集转换会导致跨平

        * 台出现乱码问题

        *

        *

        * GBK:国标编码,中文占2字节

        * UTF-8:万国码,对unicode进行编码,变长编码集

        *      英文1字节,中文3字节

        * ISO8859-1:欧洲编码集,不支持中文。

        */

        String str = "让我再看你一遍,从南到北。";

        byte[] data = str.getBytes("GBK");

        raf.write(data);

        raf.write(

            "像是北五环路,蒙住的双眼。".getBytes("GBK")

        );

        System.out.println("写出完毕!");

        raf.close();

    }

}

8.

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容