在项目中找不到Json文件

时间:2015-03-05 12:07:28

标签: c# json file windows-phone-8 readfile

我试图从我的项目中读取json文件,但vs无法找到它。当我使用.txt扩展名时,一切正常,但当我将扩展名更改为.json时,则找不到该文件

string fileContent;
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(@"ms-appx:///Resources/Database/text.json"));
using (StreamReader sRead = new StreamReader(await file.OpenStreamForReadAsync()))
fileContent = await sRead.ReadToEndAsync();
  

"系统找不到指定的文件。 (HRESULT的例外情况:   0x80070002)"

1 个答案:

答案 0 :(得分:3)

要使用JSON文件,您需要右键单击Visual Studio中文件资源管理器中的文件,然后选择“属性”,然后选择“高级”部分:

1)将Build Action设为Content

2)将Copy to Output Directory设为Copy always