-1
我已經使用舊版本的ITextSharp(4.1.2.0)繼承了一個應用程序。解析PDF時,這兩行代碼將返回null,這不應該發生。怎麼了轉換?或者它是PDF格式的問題?ITextSharp在轉換爲IDictionary或ICollection時返回Null
ICollection<string> fieldNames = (pdfReader.AcroFields.Fields.Keys) as ICollection<string>;
IDictionary<string, AcroFields.Item> fieldValues = (pdfReader.AcroFields.Fields) as IDictionary<string, AcroFields.Item>;