当前位置:   article > 正文

字节流:InputStream:读文件、OutputStream:写文件_java outputstream 写入虚拟文件,inputstream读取

java outputstream 写入虚拟文件,inputstream读取

InputStream:读文件、OutputStream:写文件

package Java10;

import java.io.*;
import java.nio.charset.StandardCharsets;

//字节流:输入流(FileInputStream):读,输出流(FileOutputStream):写
public class InputOutputStream {
    public static void main(String[] args) throws Exception {
        //FileInputStream:读文件
        InputStream is = null;
        try {
            is = new FileInputStream("D:/java/test1/src/a.txt");
            byte[] b = is.readAllBytes();
            String s = new String(b);
            System.out.println(s);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (is != null) {
                    is.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

        //FileOutputStream:写文件
        OutputStream o = new FileOutputStream("D:/java/test1/src/a.txt");
        byte[] b1 = "hello,晓晓".getBytes(StandardCharsets.UTF_8);
        o.write(b1);
        o.close();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/147278
推荐阅读
相关标签
  

闽ICP备14008679号