我有一些由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
框架中阅读此类文件,但我真的不知道如何做到这一点。
你可以帮帮我吗?