在 Java 中将 byte[] 转换为对象文件

发布于 2024-11-29 11:00:30 字数 65 浏览 1 评论 0原文

将 byte[] 转换为对象 java.io.File 的最佳方法是什么?我不想将其写入磁盘,只需获取一个对象文件。

What is the best way to convert a byte[] to Object java.io.File? i dont want write this in the disk just get a object File.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撧情箌佬 2024-12-06 11:00:30

File 对象只是磁盘上真实文件名称的包装。它不包含任何数据。您必须首先将字节数组写入文件。当您调用的 API 完成后,您也许可以再次删除该文件。搜索如何在 Java 中管理临时文件。

The File object is just a wrapper around the name for a real file on the disk. It does not contain any data. You will have to write your byte array into a file first. After the API you then call is done, you can maybe delete that file again. Search for how to manage temporary files in Java.

む无字情书 2024-12-06 11:00:30

java有serilazebal接口来持久化你的对象;

我猜你想要自定义序列化方法,比如 c strct;

参考文献:
https://github.com/MisterChangRay/magic-byte
http://code.google.com/p/javastruct/wiki/HowToUseJavaStruct

java has serilazebal interface to persistent your object;

i guess u want custom serialize method, like c strct;

refences :
https://github.com/MisterChangRay/magic-byte
http://code.google.com/p/javastruct/wiki/HowToUseJavaStruct

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文