嗨,我是新的Windows手機開發目前我正在在線應用but.i有一個問題,如何從一個URL下載一個JSON文件並將其存儲到本地存儲爲文本文件以及如何從中讀取文本以執行解析。JSON文件下載和閱讀Windows手機8
使用(IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication()){ 如果 (isf.FileExists( 「file.txt的」)) { 使用(IsolatedStorageFileStream rawstream = isf.OpenFile( 「file.txt的」,系統.IO.FileMode.Open)) { StreamReader read = new StreamReader(rawstream); result = read.ReadLine(); read.Close(); } } } MessageBox.Show(「completed and readed」+ result); }