码迷,mamicode.com
首页 > 编程语言 > 详细

Java IO流 之 FileInputStream 读取文件

时间:2018-06-26 10:55:22      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:连接   数组   lan   final   关闭   ace   TE   test   数据   

http://www.verejava.com/?id=1699461971466

package com.io;

import java.io.*;

public class TestInputStream
{
    public static void main(String[] args)
    {
        InputStream is=null;
        try
        {
            //建立了跟文件 english.txt 的连接
            is=new FileInputStream(new File("res/english.txt"));
            //读取数据
            byte[] data=new byte[1024];
            //将文件中的数据 全部读取到 data 字节数组里面
            is.read(data);
            //输出从文件读取的数据
            System.out.println(new String(data));
            
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        finally
        {
            //关闭文件
            try
            {
                is.close();
            }
            catch (IOException e)
            {
                e.printStackTrace();
            }
        }
    }
}





english.txt 内容 

Provides classes that are fundamental to the design of the Java programming language.

http://www.verejava.com/?id=1699461971466

Java IO流 之 FileInputStream 读取文件

标签:连接   数组   lan   final   关闭   ace   TE   test   数据   

原文地址:https://www.cnblogs.com/verejava/p/9227194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!