Java_IO_基础

字节输入输出流InputStream/OutputStream、与字符输入输出流Reader/Write

InputStream类的层次结构:

OutputStream类的层次结构:

Reader类的层次结构:

Writer类的层次结构:

基础:

InputStream

  • InputStream类是字节输入流的抽象类,是所有字节输入流的父类。
  • 它是以字节作为基本的单位输入
方法 说明
read() 返回int,从输入流中读取下一个字节,(0~255),文本结束返回-1
read(byte[] b) 从输入流读入指定的字节,返回int(字节数)
mark(int readlimit) 该输入流当前位置标记,readlimit在标记位置失效前允许读取的字节数
reset() 重置至当前输入流的mark位置
skip(long n) 跳过输入流上n个字节并返回实际跳过的字节数
markSupported() 当前输入流是否支持mark/reset方法
close() 关闭当前输入流

Reader

  • Reader类是字符输入流的抽象类,是所有字符输入流的父类。
  • 它是以字符作为基本的单位输入
方法 说明
read() 返回int,从输入流中读取下一个字符,(-1~0xffff),文本结束返回-1
read(char[] c) 从输入流读入指定的字符,返回int(字符数)
mark(int readlimit) 该输入流当前位置标记,readlimit在标记位置失效前允许读取的字符数
reset() 重置至当前输入流的mark位置
skip(long n) 跳过输入流上n个字符并返回实际跳过的字符数
markSupported() 当前输入流是否支持mark/reset方法
close() 关闭当前输入流

InputStream与Reader的区别

  • InputStream是表示字节输入流的所有类的超类
  • Reader是用于读取字符流的抽象类
  • InputStream提供的是字节流的读取,而非文本读取,这是和Reader类的根本区别。
  • 即用Reader读取出来的是char数组或者String ,使用InputStream读取出来的是byte数组。

OutputStream

  • OutputStream类是字节输入流的抽象类,是所有字节输出流的父类。
  • 它是以字节作为基本的单位输出
方法 说明
write(int b) 将指定字节写入该流
write(byte[] b) 向该输出流写入指定的字节
flush() 彻底完成输出并清空缓存区
close() 关闭当前输出流

Writer

  • Writer类是字符输入流的抽象类,是所有字符输入流的父类。
  • 它是以字符作为基本的单位输出
方法 说明
write(int c) 将指定字符写入该流
write(char[] cbuf) 向该输出流写入指定的字符
write(char cbuf[], int off, int len) 向该输出流写入指定的字符
write(String str) 向该输出流写入指定的字符串
Writer append(char c) 向输出流append指定的char
flush() 彻底完成输出并清空缓存区
close() 关闭当前输出流

File

文件的创建与删除

构造函数

public File(String pathname);
private File(String child, File parent);
private File(String pathname, int prefixLength);
public File(URI uri);
public File(File parent, String child);
public File(String parent, String child);
方法 说明
getName() 获取文件的名称
getParent() 获得父文件的目录名
canRead() 判断文件是否位可读
canWrite() 判断文件是否为可写
exists() 判断文件是否存在
length() 判断文件的长度
getAbsolutePath() 获取文件的绝对路径
getParent() 获取文件的父路径
isFile() 是否为文件
isDirectory() 是否为目录
isHidden() 判断文件是否隐藏
lastModified() 最近修改时间

文件字节输入输出流

FileInputStream/FileOutputStream

代码示例

     public static void main(String[] args) throws IOException{
        File file=new File("coincidance.txt");
        FileOutputStream fileOutputStream=null;
        FileInputStream fileInputStream=null;
        if(!file.isFile())
        {
            try {
                file.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if(!file.canWrite()&&!file.canRead())
            return;
        try {
            fileOutputStream=new FileOutputStream(file);
            String str="Wow, you can really dance!!!";
            byte[] contents=str.getBytes();
            fileOutputStream.write(contents);
            fileInputStream=new FileInputStream(file);
            int length= (int) file.length();
            if(length>100)
            {
                length=100;
            }
            byte[] readBuffer=new byte[length];
            int actuallyLen=0;
            StringBuilder builder=new StringBuilder();
            while ((actuallyLen=fileInputStream.read(readBuffer))!=-1)
            {
                builder.append(new String(readBuffer,0,actuallyLen));
            }
            System.out.println(builder.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        finally {
            try {
                fileOutputStream.flush();
                fileOutputStream.close();
                fileInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
                throw e;
            }
        }
    }

文件字符输入输出流

FileReader/FileWriter

代码示例

 public static void main(String[] args)throws IOException{
       File file=new File("我蠢.txt");
       String poem= "我蠢\n俺没有文化,\n我智商很低,\n要问我是谁,\n一头大蠢驴,\n俺是驴,\n俺是头驴,\n俺是头呆驴。" ;
       if(!file.exists())
       {
           file.createNewFile();
       }
       if(!file.canRead()&&!file.canWrite())return;
        FileWriter fileWriter=null;
        FileReader fileReader=null;
        try {
            fileWriter=new FileWriter(file);
            fileWriter.write(poem);
            fileWriter.flush();
            fileReader=new FileReader(file);
            int fileLen= (int) file.length();
            if(fileLen>32)
            {
                fileLen=32;
            }
            char[] buffer=new char[fileLen];
            int actuallyLen=0;
            StringBuilder builder=new StringBuilder();
            while ((actuallyLen=fileReader.read(buffer))!=-1)
            {
                builder.append(buffer,0,actuallyLen);
            }
            System.out.println(builder.toString());
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            fileWriter.close();
            fileReader.close();
        }
    }

带缓存的文件字节输入输出流

BufferedInputStream/BufferedOutputStream

代码示例

 public static void main(String[] args) throws IOException{
        File file=new File("我蠢.txt");
        FileOutputStream fileOutputStream=null;
        FileInputStream fileInputStream=null;
        BufferedOutputStream bufferedOutputStream=null;
        BufferedInputStream bufferedInputStream=null;
        if(!file.isFile())
        {
            try {
                file.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if(!file.canWrite()&&!file.canRead())
            return;
        try {
            fileOutputStream=new FileOutputStream(file);
            String str="我蠢\\n俺没有文化,\\n我智商很低,\\n要问我是谁,\\n一头大蠢驴,\\n俺是驴,\\n俺是头驴,\\n俺是头呆驴。";
            byte[] contents=str.getBytes();
            bufferedOutputStream=new BufferedOutputStream(fileOutputStream);
            bufferedOutputStream.write(contents);
            bufferedOutputStream.flush();
            bufferedOutputStream.close();
            fileInputStream=new FileInputStream(file);
            bufferedInputStream=new BufferedInputStream(fileInputStream);
            int length= (int) file.length();
            if(length>64)
            {
                length=64;
            }
            byte[] readBuffer=new byte[length];
            int actuallyLen=0;
            StringBuilder builder=new StringBuilder();
            while ((actuallyLen=bufferedInputStream.read(readBuffer))!=-1)
            {
                builder.append(new String(readBuffer,0,actuallyLen));
            }
            bufferedInputStream.close();
            System.out.println(builder.toString());
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        finally {
            try {
                fileOutputStream.flush();
                fileOutputStream.close();
                fileInputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
                throw e;
            }
        }
    }

数据输入输出流

DataInputStream/DataOutputStream

代码示例

public static void main(String[] args) throws IOException{
        File file=new File("我蠢.txt");
        String poem= "我蠢\n俺没有文化,\n我智商很低,\n要问我是谁,\n一头大蠢驴,\n俺是驴,\n俺是头驴,\n俺是头呆驴。" ;
        if(!file.isFile())
        {
            file.createNewFile();
        }
        if(!file.canRead()&&!file.canWrite())return;
        FileOutputStream fileOutputStream=null;
        FileInputStream fileInputStream=null;
        DataOutputStream dataOutputStream=null;
        DataInputStream dataInputStream=null;
        try
        {
            fileOutputStream=new FileOutputStream(file);
            dataOutputStream=new DataOutputStream(fileOutputStream);
            dataOutputStream.writeUTF(poem);
            dataOutputStream.flush();
            dataOutputStream.close();
            fileInputStream=new FileInputStream(file);
            dataInputStream=new DataInputStream(fileInputStream);
            String s=dataInputStream.readUTF();
            System.out.println(s);
        }catch (IOException e)
        {
            e.printStackTrace();
        }
    }

DataOutputStream的问题,写入到文件时会写入字数
不是UTF编码的字符使用readUTF会报java.io.EOFException

Zip压缩

ZipInputStream/ZipOutputStream

代码示例

 public static void main(String[] args) throws IOException{
        Main m=new Main();
        String path="";
        if(args.length!=0)
        {
            path=args[0];
        }
        m.zip(path+".zip",new File(path));
    }
    private void zip(String zipFileName,File inputFile)throws IOException {
        File file=new File(zipFileName);
        FileOutputStream fileOutputStream=new FileOutputStream(file);
        ZipOutputStream zipOutputStream=new ZipOutputStream(fileOutputStream);
        zip(zipOutputStream,inputFile,inputFile.getName());
        System.out.println("压缩中");
        zipOutputStream.close();
    }

    private void zip(ZipOutputStream zipOutputStream,File file,String base) throws  IOException{
        if(file.isDirectory())
        {
            File[] files=file.listFiles();
            if(base.length()!=0)
            {
                zipOutputStream.putNextEntry(new ZipEntry(base+"/"));
            }
            for(File f:files)
            {
                zip(zipOutputStream,f,base+"/"+f.getName());
            }
        }
        else
        {
            zipOutputStream.putNextEntry(new ZipEntry(base));
            FileInputStream fileInputStream=new FileInputStream(file);
            int b=0;
            while ((b=fileInputStream.read())!=-1)
            {
                zipOutputStream.write(b);
            }
            fileInputStream.close();
        }
    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,544评论 6 501
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,430评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,764评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,193评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,216评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,182评论 1 299
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,063评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,917评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,329评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,543评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,722评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,425评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,019评论 3 326
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,671评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,825评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,729评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,614评论 2 353

推荐阅读更多精彩内容