binaryfile.java
来自「看thinkinjava学习java时」· Java 代码 · 共 25 行
JAVA
25 行
package myutils;
import java.io.*;
public class BinaryFile {
public static byte[] read (File bFile) throws IOException{
BufferedInputStream bf = new BufferedInputStream(
new FileInputStream(bFile));
try{
byte [] data = new byte[bf.available()];
bf.read(data);
return data;
}finally{
bf.close();
}
}
public static byte []
read (String bFile) throws IOException{
return read(new File(bFile).getAbsoluteFile());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?