博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IO流
阅读量:5105 次
发布时间:2019-06-13

本文共 1374 字,大约阅读时间需要 4 分钟。

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

转载于:https://www.cnblogs.com/yjtm53/p/4155868.html

你可能感兴趣的文章
NP难问题求解综述
查看>>
算法和数据结构(三)
查看>>
看一下你在中国属于哪个阶层?
查看>>
在iOS 8中使用UIAlertController
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
Cadence Allegro 如何关闭铺铜(覆铜)shape的显示和设置shape显示模式–allegro小技巧...
查看>>
Atcoder Grand Contest 004 题解
查看>>
MFC中 给对话框添加背景图片
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
idea 系列破解
查看>>
Repeater + Resources 列表 [原创][分享]
查看>>
c# Resolve SQlite Concurrency Exception Problem (Using Read-Write Lock)
查看>>
dependency injection
查看>>
WCF揭秘——使用AJAX+WCF服务进行页面开发
查看>>
C#综合揭秘——细说多线程(下)
查看>>
c#运算符 ?
查看>>
Silverlight学习笔记(九)-----RenderTransform特效【五种基本变换】及【矩阵变换MatrixTransform】...
查看>>
【题解】青蛙的约会
查看>>
【eclipse】点Clean后没反应
查看>>
求给定字符串的最长子字符串
查看>>