0

我整天都在用头撞墙。我有一个我们生成的 PDF 文件。PDF 文件在 Acrobat 中看起来不错。

我需要在base64中编码文件。使用 Apache 编解码器库我这样做:

String base64buf = Base64.encodeBase64String( m_reportText.getBytes( "UTF-8" ) );

作为测试,我将 base64buf 写入文件:

Files.write( new File( "report.b64" ).toPath(), base64buf.getBytes( "UTF-8") );

然后我把它转换回来,看看它是否工作:

String encodedName = "report.b64";
String decodedName = "report.pdf";

// Read original file.
byte[] encodedBuffer = Files.readAllBytes( new File( encodedName ).toPath() );

// Decode
byte[] decodedBuffer = Base64.decodeBase64( encodedBuffer );

// Write out decodedBuffer.
FileOutputStream outputStream = new FileOutputStream( decodedName );
outputStream.write( decodedBuffer );
outputStream.close();

我在 Acrobat 中打开 report.pdf,它是一个空白文档。它具有正确的页数(全部为空白)。

我在这里想念什么?

4

1 回答 1

1

m_reportText是一个字符串,因此包含 Unicode 文本。然而,PDF 通常是二进制数据。确实应该避免这种情况,因为双向的多余转换是有损且容易出错的。对于 hack,您可以尝试将 PDF 字节存储和检索为 ISO-8859-1。

使用byte[] m_reportText.

于 2015-07-29T09:18:18.933 回答