gpt4 book ai didi

Java 编译错误 : New instance ignored

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

这是我使用 itext 创建 pdf 文档的 java 代码。

package com.cdac.pdfparser;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.*;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfWriter;

public class PDFCreate {
public static String RESULT = "results/part1/chapter01/";
public static void main(String[] args)
throws DocumentException, IOException {
Scanner sc = new Scanner(System.in);
String fileName = sc.nextLine();
RESULT = RESULT + fileName;
new PDFCreate.createPdf(RESULT);
}
public void createPdf(String filename)
throws DocumentException, IOException {
// step 1
Document document = new Document();
// step 2
PdfWriter.getInstance(document, new FileOutputStream(filename));
// step 3
document.open();
// step 4
document.add(new Paragraph("Hello World!"));
// step 5
document.close();
}
}

但是我遇到编译错误:忽略新实例

请帮帮我...

最佳答案

    new PDFCreate.createPdf(RESULT);
-------^

这不是创建 Object 的正确方法。

应该是

 new PDFCreate().createPdf(RESULT);

你忘了写 ()

关于Java 编译错误 : New instance ignored,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22373604/

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