将XML文件保存到WP8中的独立存储

时间:2014-03-04 11:46:49

标签: c# xml windows-phone-8 abbyy

我正在开发一个需要扫描图片中几个文本字段并使用结果的Windows Phone 8应用程序。我正在使用ABBYY云OCR,我需要方法processFields(link http://ocrsdk.com/documentation/apireference/processFields/?utm_source=stackoverflow.com&utm_medium=comment&utm_campaign=SMM),其参数是带有字段协调的XML文件的路径。 是否有人熟悉Windows Phone 8上的隔离存储,可以帮我保存XML文件(或写入它)?

1 个答案:

答案 0 :(得分: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();