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文件内容一直未增加也未改变 展开
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文件内容一直未增加也未改变 展开
2个回答
展开全部
建议你用第三方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();
//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进制数据
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询