gpt4 book ai didi

java - 将 PDF 转换为字节数组,反之亦然

转载 作者:行者123 更新时间:2023-11-30 10:28:45 27 4
gpt4 key购买 nike

我正在尝试创建一个能够将 PDF 文件上传和下载到服务器的 Android 应用程序,我已经在我的代码中包含了一种能够从“http://www.aaaa.com/myfile.pdf”等 URL 下载 PDF 并显示的方法它通过使用 Intent 。但我想知道是否有办法将 Pdf 编码为字节数组,反之亦然将字节数组解码为 PDF 文件(我使用的是 mongoDB)感谢大家:)

最佳答案

import java.nio.file.*;

Path pdfFilePath = Paths.get("/file/path/your_file.pdf");

// Read file to byte array
byte[] pdfByteArray = Files.readAllBytes(pdfFilePath );

// Write byte array to file
Files.write(pdfFilePath , pdfByteArray);

关于java - 将 PDF 转换为字节数组,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44417894/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com