以下のコードを実行しようとすると、以下のエラーがスローされます
java.lang.NumberFormatException: For input string: "8#40"
at java.lang.NumberFormatException.forInputString(Unknown Source)
コード :
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm;
import org.apache.pdfbox.pdmodel.interactive.form.PDField;
public class PDFPerform
{
public static void main(String[] args)
{
try{
String sourcePath = "C:\\Users\\347702\\Desktop\\fw4.pdf";
String destinationPath = "D:\\PDF_FORMS\\filled_fw4.pdf";
PDDocument document;
document = PDDocument.load(sourcePath);
PDAcroForm form = document.getDocumentCatalog().getAcroForm();
PDField Field_1= form.getField("f1_09(0)");
Field_1.getValue();
System.out.println(Field_1.getValue());
Field_1.setValue("asdsd");
System.out.println(Field_1.getFieldType());
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
上記の問題の根本的な原因を解決してくれる人はいますか..上記のフィールドf1_09(0)
はテキスト型ですが、値を設定すると上記のエラーがスローされます
ありがとう