标签:字符 输出 tac word code 设定 ring 处理 返回
FileOutputStream 输出流,写出内容到文件
FileInputStream 输入流,从文件读入内容到缓冲区
public class Demo { public static void main(String[] args) { File f = new File("D:/word.txt");//指定路径、文件(夹)名 try {//异常处理 FileOutputStream out = new FileOutputStream(f, true);//默认不追加,而是覆盖。 String str = "与众不同"; byte b[] = str.getBytes();//字符串转字节 out.write(b); } catch (java.io.IOException e) { e.printStackTrace(); } try { FileInputStream in = new FileInputStream(f); byte b2[] = new byte[200];//设定缓冲区大小,200字节 int length = in.read(b2);//读入文本到缓冲区,返回文本字节数。 System.out.println("文件内容是:" + new String(b2, 0, length));//0,length可以去除空格(未使用缓冲区) } catch (java.io.IOException e) { e.printStackTrace(); } } }
标签:字符 输出 tac word code 设定 ring 处理 返回
原文地址:https://www.cnblogs.com/xixixing/p/9517312.html