文件读取字节流

package byteOperate;


import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;


public class FileInputStreamDemo {
/**
*a.文件的读取
*1.建立联系 File对象
*2.选择流 输入流 InputStream(抽象父类) + FileInputStream

*3.操作  byte[] cache = new byte[1024] +  read()

输出(打印出来)

          *4.解决乱码问题                                      

*5.释放资源:关闭输入流
* @ NicolasKs
*/
public static void main(String[] args) {


File file =new File("E:/inputTest.txt");
InputStream inputStream=null;

try {

    inputStream=new FileInputStream(file);
   byte[] cache=new byte[1];
   int  length=inputStream.read(cache);
   while(-1!=length){
    int a = cache[0];
    if(a>=0&&a<=127)
    System.out.print((char)a);
    else{
    int nextByte = inputStream.read();
    byte[] bytes=new byte[2];
    bytes[0]=cache[0];
    bytes[1]=(byte) nextByte;
    System.out.print(new String(bytes));
    }
   
length = inputStream.read(cache);
   
   }

} catch (FileNotFoundException e) {
System.out.println("文件没有找到");
e.printStackTrace();
} catch (IOException e) {
System.out.println("文件读取异常");
e.printStackTrace();
}finally{
try {
if(inputStream!=null)
inputStream.close();
} catch (IOException e) {
System.out.println("输入流关闭失败");
e.printStackTrace();
}
}
}


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值