我正在阅读一个 XML 文件并使用这些数据来填写一个 PDF 模板。
XML 文件有一个名为 <my:SpecialInstructions>Test for special instructions</my:SpecialInstructions>
而 PDF 模板字段是:
并且这些字段被称为:
我遇到的问题是Test for special instructions
第一行重复一次,第二行重复一次
问题:标签如何<my:SpecialInstructions>
翻译成my:SpecialInstructions1
& my:SpecialInstructions2
?
我正在使用XMLParse
,c#
为此。
根据罗伯特的建议,我将包含填充 PDF 的代码:
public void InsertDataToTemplate(DataTable dt)
{
// cycle through datatable and find field to field matches
DataRow row = dt.Rows[0];
int fieldType = 0;
string checkBoxInsert = "";
List<string> notFoundList = new List<string>();
foreach (DataColumn col in dt.Columns)
{
if (pdfStamper.AcroFields.Fields.Where(afd => afd.Key == col.ColumnName).Count() != 0)
{
fieldType = pdfStamper.AcroFields.GetFieldType(col.ColumnName);
if (fieldType == AcroFields.FIELD_TYPE_CHECKBOX)
{
checkBoxInsert = (row[col.ColumnName].ToString().ToUpper() == "FALSE") ? "NO" : "Yes";
pdfStamper.AcroFields.SetField(col.ColumnName, checkBoxInsert);
}
else
{
pdfStamper.AcroFields.SetField(col.ColumnName, row[col.ColumnName].ToString());
}
}
else
notFoundList.Add(col.ColumnName);
}
}