摘要:
1、字节输出转换流(OutputStreamWriter) 1 package iochange; 2 3 import java.io.*; 4 5 /* 6 java.io.OutputStreamWriter extends Writer 7 8 OutputStreamWriter: 是字符 阅读全文
摘要:
一、缓冲字节流 1、缓冲字节输出流(BufferedOutputStream) 1 public static void main(String[] args) throws IOException { 2 /* 3 字节缓冲输出流使用步骤: 4 1:创建FileOutputStream对象,指定输 阅读全文
摘要:
1 public static void main(String[] args) throws IOException { 2 FileInputStream fis = new FileInputStream("c:\\1.jpg"); 3 FileOutputStream fos = new F 阅读全文
摘要:
Properties集合是唯一一个可以和IO流相结合的集合 可以将集合中的数据持久化存储,也可以将硬盘上的数据加载到该集合中。 1 Properties集合添加、遍历 1 private static void show01() { 2 // setProperty() 通过该方法向Properti 阅读全文