集册 Java实例教程 使用FileInputStream读取字节数组中的文件

使用FileInputStream读取字节数组中的文件

欢马劈雪     最近更新时间:2020-01-02 10:19:05

526
使用FileInputStream读取字节数组中的文件
// from 时代Java公众号 - N o w J a  v a . c o m


import java.io.*;

 

public class Main {

 

  public static void main(String[] args) {

    File file = new File("C://Folder//ReadString.txt");

    try

    {

      FileInputStream fin = new FileInputStream(file);

     

      byte fileContent[] = new byte[(int)file.length()];

     

      fin.read(fileContent);

     

      String strFileContent = new String(fileContent);

     

      System.out.println("File content : ");

      System.out.println(strFileContent);
      /*
      N o w J a v a . c o m - 时  代  Java 提供
      */

     

    }

    catch(FileNotFoundException e)

    {

      System.out.println(
展开阅读全文