我有一些二进制文件,由Java
应用程序以下列方式编写:
DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(complete_path_to_file)));
dos.writeInt(aInteger);
dos.writeLong(aLong);
dos.writeFloat(aFloat);
dos.close();
现在,我想在Scala
框架中阅读此类文件,但我真的对如何做到这一点没有任何想法。
你能帮帮我吗?