2014-03-04 164 views
0

我正在研究需要扫描图片中几个文本字段并使用结果的windows phone 8应用程序。我使用的是ABBYY云OCR,我需要processFields方法(链接http://ocrsdk.com/documentation/apireference/processFields/?utm_source=stackoverflow.com&utm_medium=comment&utm_campaign=SMM),其参数是XML文件的路径以及字段的协调。 是谁熟悉Windows Phone 8上的独立存储,并可以帮助我保存一个XML文件(或写入它)?将XML文件保存到WP8中的独立存储

回答

0

可能这会帮助你。 Here is more abouthow to use isolated storage in wp8

IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication(); 
StreamWriter Writer = new StreamWriter(new IsolatedStorageFileStream("TestFile.xml", FileMode.OpenOrCreate, fileStorage)); 
Writer.WriteLine(xml_string); 
Writer.Close(); 
相关问题