我想在预制的PDF文档中填写表单字段,但是在运行时我收到了AcroForm的Null Refrence错误。
string fileN4 = TextBox1.Text + " LOG.pdf";
File.Copy(Path.Combine(textBox4.Text + "\\", fileN4),
Path.Combine(Directory.GetCurrentDirectory(), fileN4), true);
// Open the file
PdfDocument document = PdfReader.Open(fileN4, PdfDocumentOpenMode.Modify);
PdfTextField currentField = (PdfTextField)(document.AcroForm.Fields["<CASENUM>"]);
//const
string caseName = TextBox1.Text;
PdfString caseNamePdfStr = new PdfString(caseName);
//set the value of this field
currentField.Value = caseNamePdfStr;
// Save the document...
document.Save(fileN4);
所以PdfTextField currentField = (PdfTextField)(document.AcroForm.Fields["<CASENUM>"]);
是错误发生的地方。它接缝表明AcroForm甚至没有认识到这些领域。
另一种选择是在PDF中查找和替换文本(不使用因许可而无法使用的itextsharp)。
任何帮助都会很棒!
答案 0 :(得分:25)
如果您尝试填充PDF表单字段,则还需要此选项,还需要将NeedsAppearances元素设置为true。否则,PDF将“隐藏”表单上的值。这是VB代码。
If objPdfSharpDocument.AcroForm.Elements.ContainsKey("/NeedAppearances") = False Then
objPdfSharpDocument.AcroForm.Elements.Add("/NeedAppearances", New PdfSharp.Pdf.PdfBoolean(True))
Else
objPdfSharpDocument.AcroForm.Elements("/NeedAppearances") = New PdfSharp.Pdf.PdfBoolean(True)
End If
答案 1 :(得分:5)
我刚刚经历过类似的事情。我打开的第一个pdf文件不包含acroform数据,并导致如上所述的null异常。问题不在于打开pdf,而是对具有值null的Acroform成员变量的引用。您可以使用以下代码示例测试您的pdf:
OpenFileDialog ofd = new OpenFileDialog();
if (ofd.ShowDialog() == DialogResult.OK)
{
PdfDocument _document = null;
try
{
_document = PdfReader.Open(ofd.FileName, PdfDocumentOpenMode.Modify);
}
catch(Exception ex)
{
MessageBox.Show(ex.Message,"FATAL");
//do any cleanup and return
return;
}
if (_document != null)
{
if (_document.AcroForm != null)
{
MessageBox.Show("Acroform is object","SUCCEEDED");
//pass acroform to some function for processing
_document.Save(@"C:\temp\newcopy.pdf");
}
else
{
MessageBox.Show("Acroform is null","FAILED");
}
}
else
{
MessageBox.Show("Uknown error opening document","FAILED");
}
}
<强> ADENDUM 强>
我也注意到这行代码中的键不应该有尖括号
document.AcroForm.Fields["<CASENUM>"]
将其更改为
document.AcroForm.Fields["CASENUM"]
答案 2 :(得分:3)
我今天一直在努力,我已经设法创建了一个可行的解决方案。我在下面粘贴了我的工作代码。我能在代码和OP之间看到的唯一真正的区别如下:
希望这对尝试做同样事情的人有用。
string templateDocPath = Server.MapPath("~/Documents/MyTemplate.pdf");
PdfDocument myTemplate = PdfReader.Open(templateDocPath, PdfDocumentOpenMode.Modify);
PdfAcroForm form = myTemplate.AcroForm;
if (form.Elements.ContainsKey("/NeedAppearances"))
{
form.Elements["/NeedAppearances"] = new PdfSharp.Pdf.PdfBoolean(true);
}
else
{
form.Elements.Add("/NeedAppearances", new PdfSharp.Pdf.PdfBoolean(true));
}
PdfTextField testField = (PdfTextField)(form.Fields["TestField"]);
testField.Text = "012345";
myTemplate.Save(Server.MapPath("~/Documents/Amended.pdf")); // Save to new file.
答案 3 :(得分:1)
克服NullReferenceException
的解决方案是打开预先制作的
使用Adobe Acrobat提供PDF并通过将其属性类型更改为null
以外的其他内容,为表单字段指定默认值。
答案 4 :(得分:1)
我今天早些时候遇到了同样的问题。但是,我认为源代码已更新,因此,如果尝试上述方法,将会收到NullExceptionError。相反,对于TextField,您需要生成PdfString并使用testfield.Value而不是.text。这是一个例子。
static PdfAccess()
{
Pdf.PdfDocument doc = Pdf.IO.PdfReader.Open(@"C:\...\ Contract.pdf", Pdf.IO.PdfDocumentOpenMode.Modify);
Pdf.AcroForms.PdfAcroForm form = doc.AcroForm;
if (form.Elements.ContainsKey("/NeedAppearances"))
{
form.Elements["/NeedAppearances"] = new PdfSharp.Pdf.PdfBoolean(true);
}
else
{
form.Elements.Add("/NeedAppearances", new PdfSharp.Pdf.PdfBoolean(true));
}
var name = (Pdf.AcroForms.PdfTextField)(form.Fields["Email"]);
name.Value = new Pdf.PdfString("ramiboy");
doc.Save(@"C:\...\ Contract.pdf");
doc.Close();
答案 5 :(得分:0)
尝试打开时,您是否尝试过放入当前目录?
更改
PdfDocument document = PdfReader.Open(fileN4, PdfDocumentOpenMode.Modify);
到
PdfDocument document = PdfReader.Open(Path.Combine(Directory.GetCurrentDirectory(), fileN4), PdfDocumentOpenMode.Modify);
我很确定PdfReader需要一个完整的文件路径,尽管我只使用ASPOSE来创建pdf。