简体   繁体   中英

load an adobe dynamic form file

I have a .pdf created through Adobe LiveCycle Designer (it's a dynamic pdf ) i want to add this pdf to my windows app

this is what i tried

File file1 = new File(fileName);
System.Xml.XmlDocument xfadoc = new System.Xml.XmlDocument();
xfadoc.LoadXml(fileName);

here's how i get filename

OpenFileDialog dialog = new OpenFileDialog();
dialog.InitialDirectory = "c:\\";
dialog.Filter = "pdf files (*.pdf) | *.pdf | All Files (*.*) | *.* | xdp files (*.xdp) | *.xdp ";
dialog.FilterIndex = 2;
dialog.RestoreDirectory = true;
dialog.CheckFileExists = true;
dialog.DefaultExt = "pdf | xdp";
fileName = dialog.FileName.ToString();

but when i click on open file button and browse to where i have stored it ; it doesnot even appear

Also when i try to load this file in my C# windows app it gives me an exception at the following line

 xfadoc.LoadXml(fileName);

the exception says that

'Data at root level is invalid'

If i say that i have loaded the string (filepath name) someone please tell me how can i extract the xml part only form this dynamic file

尝试在扩展部分中Filter不带空格的部分。

dialog.Filter = "pdf files (*.pdf)|*.pdf|All Files (*.*)|*.*|xdp files (*.xdp)|*.xdp";

LoadXml loads the document from the string parameter. You want to use the Load method.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM