如何在Java中将文件内容写入字节数组?
FileInputStream类包含一个方法read(),该方法接受字节数组作为参数,并将文件输入流的数据读取到给定的字节数组。
示例
import java.io.File;
import java.io.FileInputStream;
public class FileToByteArray {
public static void main(String args[]) throws Exception {
File file = new File("HelloWorld");
FileInputStream fis = new FileInputStream(file);
byte[] bytesArray = new byte[(int)file.length()];
fis.read(bytesArray);
String s = new String(bytesArray);
System.out.println(s);
}
}输出结果
//Class declaration
public class SampleProgram {
/* This is my first java program.
This will print '你好世界' as the output
*/
//主要方法
public static void main(String []args) {
//打印你好世界-
System.out.println("你好世界");
}
}热门推荐
10 升学祝福语简短的个性
11 生日祝福语简短而有深意
12 简短的宝宝出生祝福语
13 毕业祝福语简短给同学
14 对学姐的简短祝福语
15 撩妹生日祝福语简短
16 小清新的祝福语简短
17 发给女儿生日简短祝福语
18 女儿升学宴祝福语简短