Java程序将文件内容转换为字节数组及反之亦然


FileInputStream类包含一个方法read(),该方法接受一个字节数组作为参数,并将文件输入流的数据读取到给定的字节数组中。假设文件myData包含以下数据−

示例

import java.io.File;
import java.io.FileInputStream;

public class FileToByteArray {
   public static void main(String args[]) throws Exception{
      File file = new File("myData");
      FileInputStream fis = new FileInputStream(file);
      byte[] bytesArray = new byte[(int)file.length()];
      fis.read(bytesArray);
      String s = new String(bytesArray);
      System.out.println(s);
   }
}

输出

Hi how are you welcome to Tutorialspoint


更新于:2020年3月13日

221次观看

开始你的事业

通过完成课程获得认证

开始
广告