gpt4 book ai didi

java - 从 java 代码创建 PDF 文件 [不使用 iText]

转载 作者:行者123 更新时间:2023-11-30 07:14:07 26 4
gpt4 key购买 nike

<分区>

我想从 Java 代码创建一个 PDF 文件。这就是我到目前为止所写的-

public class IOExp  {
public static void main(String args[]) throws java.io.IOException {
java.io.FileOutputStream fout=new java.io.FileOutputStream("MyFile.pdf");

byte [] arr=("Hello World.\n"+"My name is Prateek Mathur, and I am a great programmer.\n").getBytes();
fout.write(arr);
}
}

MyFile.pdf 的创建没有任何问题,但在打开它时,Adobe Reader 显示以下消息-

'Abode Reader can not open 'MyFile.pdf' because it is either not a supported file
type or because the file has been damaged (for example, it was sent as an email
attachment and wasn't correctly decoded.'

我已经熟悉 iText API,想知道如何手动创建 PDF 文件。

我的代码有什么问题,需要引入哪些更改才能成功创建 PDF 文件?

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