java io流输出PDF文件,文件内容追加问题

代码:Filefile=newFile("g://labelImage.PDF");FileOutputStreamfos=newFileOutputStream(fil... 代码:
File file = new File("g://labelImage.PDF");
FileOutputStream fos = new FileOutputStream(file,true);
bytes = decoder.decodeBuffer(labelImage);
fos.write(bytes);
fos.flush();
fos.close();
多次运行,文件追加了,但是打开PDF文件内容一直未增加也未改变
展开
 我来答
千叶育儿
2014-10-23 · 育儿、诗词分享,每天进步一点点!
千叶育儿
采纳数:1524 获赞数:5378

向TA提问 私信TA
展开全部
建议你用第三方itextpdf
//Step 1—Create a Document.
Document document = new Document();
//Step 2—Get a PdfWriter instance.
PdfWriter.getInstance(document, new FileOutputStream(FILE_DIR + "createSamplePDF.pdf"));
//Step 3—Open the Document.
document.open();
//Step 4—Add content.
document.add(new Paragraph("Hello World"));
//Step 5—Close the Document.
document.close();
更多追问追答
追问
不能用这个,这个追加的是一个字符串,但是我需要的是追加一个byte[]
追答
不能用第三方包吗?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-10-23
展开全部
点个pdf就是pdf了吗
追问
因为要输出的数据bytes = decoder.decodeBuffer(labelImage);本身就是PDF格式的2进制数据
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式