是否有类似二进制数据的扫描仪?我想例如使用像“\ r \ n”这样的分隔符,并在每次调用某个方法时获取byte []。你可以为我提供可以创造奇迹的课程吗?
答案 0 :(得分:1)
考虑使用DataInputStream
和DataOutputStream
:
File file = new File("binaryFile.dat");
FileOutputStream fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
DataOutputStream dos = new DataOutputStream(bos);
byte[] array1 = ...
byte[] array2 = ...
byte[] array3 = ...
dos.writeInt(array1.length);
for(byte b : array1) dos.wrtieByte(b);
dos.writeInt(array2.length);
for(byte b : array2) dos.wrtieByte(b);
dos.writeInt(array3.length);
for(byte b : array3) dos.wrtieByte(b);
并阅读如下:
File file = new File("binaryFile.dat");
FileInputStream fis = new FileInputStream(file);
BufferedInputStream bis = new BufferedInputStream(fis);
DataInputStream dis = new DataInputStream(bis);
byte[] array1 = new byte[dis.readInt()];
for(int i = 0; i < array1.length; i++) array1[i] = dis.readByte();
byte[] array2 = new byte[dis.readInt()];
for(int i = 0; i < array2.length; i++) array2[i] = dis.readByte();
byte[] array3 = new byte[dis.readInt()];
for(int i = 0; i < array3.length; i++) array3[i] = dis.readByte();
答案 1 :(得分:0)
Jakarta commons有一个可以使用的库。只需从jakarta下载.jar并下载他们的.jar并通过添加外部jar将其添加到您的构建路径。 IOUtils.toByteArray(InputStream input)
答案 2 :(得分:0)
您可以使用java.io.InputStream类:
InputStream is = new FileInputStream("your_file");
byte[] b = new byte[is.available()]; //reads how much bytes are readable from file
is.read(b);//reads the file and save all read bytes into b
希望这有帮助