java io流输出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文件内容一直未增加也未改变

第1个回答  2014-10-23
建议你用第三方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[]

追答

不能用第三方包吗?

追问

不是,只是你这个document操作的对象是文本,而我需要操作的对象是byte[]

本回答被提问者采纳
第2个回答  2014-10-23
点个pdf就是pdf了吗追问

因为要输出的数据bytes = decoder.decodeBuffer(labelImage);本身就是PDF格式的2进制数据

相似回答