2

我的应用程序的数据存储在本地 JSON 中。我最初将其存储为字符串应用程序设置,但这并没有提供足够的空间。因此,我正在更新我的应用程序以从本地存储中的 JSON 文件读取/写入。

当用户与我的应用程序交互时,我的应用程序会在不同时间读取和写入 JSON,并且在读取或写入文件时经常出现此错误:

System.IO.FileLoadException:“该进程无法访问该文件,因为它正被另一个进程使用。”

以下是涉及的方法:

    private static async Task<StorageFile> GetOrCreateJsonFile()
    {
        bool test = File.Exists(ApplicationData.Current.LocalFolder.Path + @"\" + jsonFileName);

        if(test)
            return await ApplicationData.Current.LocalFolder.GetFileAsync(jsonFileName);
        else
            return await ApplicationData.Current.LocalFolder.CreateFileAsync(jsonFileName);

    }


    private static async void StoreJsonFile(string json)
    {
        StorageFile jsonFile = await GetOrCreateJsonFile();
        await FileIO.WriteTextAsync(jsonFile, json);
    }

    private static async Task<string> GetJsonFile()
    {
        StorageFile jsonFile = await GetOrCreateJsonFile();
        return await FileIO.ReadTextAsync(jsonFile);
    }

有时错误在 上WriteTextAsync,有时在 上ReadTextAsync。似乎没有发生错误的特定点,只是似乎随机发生。请让我知道是否有其他方法可以避免错误。

4

1 回答 1

3

问题出在你的StoreJsonFile方法上。它被标记为async void,这是一种不好的做法。当您调用此方法并且它到达第一个 IO 绑定async调用(在本例中FileIO.WriteTextAsync)时,它只会结束执行并且不会等待 IO 操作完成。这是一个问题,因为当您调用GetJsonFile. ReadTextAsync此外 - 当系统已经开始执行时,写入可能不会开始,因为系统首先运行了该方法。这就解释了为什么您可能会在这两种方法中看到异常。

解决方案很简单——不要使用async voidasync Task而是使用:

private static async Task StoreJsonFile(string json)
{
    StorageFile jsonFile = await GetOrCreateJsonFile();
    await FileIO.WriteTextAsync(jsonFile, json);
}

并且当您调用您的方法时,请始终记住使用await以确保在 IO 操作完成后继续执行,以免出现竞争条件的风险。

于 2018-03-14T06:25:56.393 回答