zoukankan      html  css  js  c++  java
  • 四套读写方案

    File类用于访问文件或目录的属性

    流:指一连串流动的字符,是以先进先出的方式发送信息的通道。程序和数据源之间是通过流联系起来的。

    第一套:字节流读取写入方案

    FileInputStream :字节流方式读取文本文件

    复制代码
            FileInputStream fis=new FileInputStream("E:\读取文件.txt");
            byte[]bytes=new byte[1024];
            int data;
            while((data=fis.read(bytes))!=-1)
            {
                String str=new String(bytes,0,data);
                System.out.println(str);
            }
            fis.close();
        }
    复制代码

    FileOutputStream:字节流写入硬盘

    复制代码
        FileOutputStream fos=new FileOutputStream("E:\1.txt");
            String word="高考是人生的分水岭";
            byte[] bytes = word.getBytes();
            fos.write(bytes);
            fos.close();
            System.out.println("写入成功!");        
        }
    }
    复制代码

    第二套:字符流读取写入方案

    FileReader:字符流读取文本

    复制代码
        FileReader fr=new FileReader("E:\读取文件.txt");
        char[]chars=new char[1024];
        int data;
        while((data=fr.read(chars))!=-1)
        {        
            String str=new String(chars);
            System.out.println(str);
        }
    }
    复制代码

    FileWriter:字符流写入文本

    复制代码
    FileWriter fw=new FileWriter("E:\2.txt");
            
            fw.write("新的6月");
            
            System.out.println("写入成功!");
    
            fw.close();
        }
    复制代码

    第三套:<BufferedReader、BufferedWriter>一般和FileReader和FileWriter结合使用

    BufferedReader:自定义缓存大小,读取文本 8192个char

    复制代码
        FileReader fr=new FileReader("E:\读取文件.txt");
        BufferedReader br=new BufferedReader(fr);
        String line;
        while((line=br.readLine())!=null)
        {
            System.out.println(line);
        }
        br.close();
        fr.close();
    }
    复制代码

    BufferedWriter:写入文本

    复制代码
        FileWriter fw=new FileWriter("E:\5.txt");
            BufferedWriter bw=new BufferedWriter(fw);
            bw.write("OK!!");
            
            bw.close();
            fw.close();
            
            System.out.println("写入成功!!");
        }
    复制代码

    第四套:可以读取二进制(img图片等 )

    DataInputStream:将本地的img加载到内存中

    复制代码
    FileInputStream fis=new FileInputStream("E:\5.txt");
            FileOutputStream fos=new FileOutputStream("D:\55.txt");
            
            DataInputStream dis=new DataInputStream(fis);
            DataOutputStream dos=null;
            
            byte[]bytes=new byte[1024];
            
            int data;
            
            while((data=dis.read(bytes))!=-1)
            {
                dos=new DataOutputStream(fos);
                dos.write(bytes);
            }
            
            dos.close();
            dis.close();
            fos.close();
            fis.close();
            
            System.out.println("copy succes!!!");
        }
    复制代码

    DataOutputStream:将内存中的二进制数据写入到硬盘上的某个文件中

    复制代码
        DataOutputStream out=null;
            DataInputStream dis=null;
            try {
                //创建输入流对象
                FileInputStream fis=new FileInputStream("c:\范宁.jpg");
                dis=new DataInputStream(fis);
                //创建输出流对象
                FileOutputStream outFile=new FileOutputStream("c:\范宁小美女33.jpg");
                out=new DataOutputStream(outFile);
                int temp=dis.read();
                while (temp!=-1) {
                    out.write(temp);
                    temp=dis.read();
                }
                System.out.println("复制成功");
                fis.close();
                outFile.close();
            } catch (Exception e) {
                System.out.println("文件不存在");
            }finally{
                try {
                    if (dis!=null) {
                        dis.close();
                    }
                    if (out!=null) {
                        out.close();
                    }
                } catch (Exception e2) {
                    e2.printStackTrace();
                }
            }
    复制代码

    注:在java中,byte数组和String字符串如何转换?

    1、string 转 byte[]

    String str = "Hello";
    byte[] srtbyte = str.getBytes();

    2、byte[] 转 string

    byte[] srtbyte;
    String str = new String(srtbyte);
    System.out.println(str);
  • 相关阅读:
    WCF 、Web API 、 WCF REST 和 Web Service 的区别
    BusyIndicator using MVVM 忙碌状态指示器的的实现
    复制文件夹的方法 .net
    SQL/LINQ/Lamda
    CSLA验证规则总结
    C++中GB2312字符串和UTF-8之间的转换
    如何用VC编写供PB调用的DLL
    【转】lucene4.3.0 配置与调试
    cygwin主要命令
    【转】eclipse中window->preference选项中没有tomcat的解决方法
  • 原文地址:https://www.cnblogs.com/hr1997/p/5564010.html
Copyright © 2011-2022 走看看