2014-03-04 1 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 파일을 저장하는 데 도움이 될 수 있습니까?WP8의 격리 된 저장소에 XML 파일 저장

답변

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();