首页 > 代码库 > IO流
IO流
1 流的分类:
按照数据刘翔的不同:输入流 输出流
按照处理数据的单位的不同:字节流 字符流(处理的文本文件)
按照角色的不同:节点流(直接作用于文件)处理流
package lianxi1;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import org.junit.Test;public class TestFileInputOutputStream { @Test //要读取的文件一定要存在 public void test1(){ FileInputStream fis = null; try { File file1 = new File("d:\\io\\helloworld.txt"); fis = new FileInputStream(file1); int b = fis.read(); while(b!=-1){ System.out.print((char)b); b = fis.read(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally{ try { fis.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } @Test // 要读取的文件一定要存在 public void test2() { FileInputStream fis = null; try { File file1 = new File("d:\\io\\helloworld.txt"); fis = new FileInputStream(file1); byte[] b = new byte[6]; int len;// int len = fis.read(b);// while (len != -1) {// for(int i=0;i<len;i++){// System.out.print((char)b[i]);// }// len = fis.read(b);// } while ((len=fis.read(b))!= -1) { for(int i=0;i<len;i++){ //是len,不是b.length System.out.print((char)b[i]); } } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { try { fis.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }}
IO流
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。