我有一个我编写的类,它将任何对象保存并检索到Windows Phone隔离存储系统。看看......
public class DataCache
{
// Method to store an object to phone ************************************
public void StoreToPhone(string key, Object objectToStore)
{
var settings = IsolatedStorageSettings.ApplicationSettings;
try
{
if (existsInStorage(key))
{
settings.Remove(key);
settings.Add(key, objectToStore);
}
else
{
settings.Add(key, objectToStore);
}
}
catch (Exception e)
{
MessageBox.Show("An error occured while trying to cache data: " + e.Message);
}
}
// Method to retrieve an object ******************************************
public Object retrieveFromPhone(string key)
{
var settings = IsolatedStorageSettings.ApplicationSettings;
Object retrievedObject = null;
try
{
if (existsInStorage(key))
{
settings.TryGetValue<Object>(key, out retrievedObject);
}
else
{
MessageBox.Show(string.Format("Cannot find key {0} in isolated storage", key));
}
}
catch(Exception e)
{
MessageBox.Show("An error occured while trying to retrieve cache object: "+e.Message);
}
return retrievedObject;
}
// Helper method to check if there is space on the phone to cache the data
private bool IsSpaceAvailable(long spaceReq)
{
using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
{
long spaceAvail = store.AvailableFreeSpace;
if (spaceReq > spaceAvail)
{
return false;
}
return true;
}
}
// Method to check if key exists in isolated storage *********************
public bool existsInStorage(string key)
{
var settings = IsolatedStorageSettings.ApplicationSettings;
bool objectExistsInStorage = settings.Contains(key);
return objectExistsInStorage;
}
}
当我运行我的应用程序并尝试使用StoreToPhone()方法存储一些数据时,我收到以下错误:
尝试缓存数据时发生错误:值不在预期范围内
我不知道这意味着什么..是不是期待这种类型的对象?我不确定......我正在传递一个我写过的自定义课程。
答案 0 :(得分:1)
在我遇到同样问题之前的某些时候。
似乎错误显示“存储中可能存在重复值”。 所以我在'add'之前使用'remove',然后我发现并没有保存所有东西,所以我在'add'之后使用了'save'功能。
它对我有用......
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings;
appSettings.Remove("name");
appSettings.Add("name", "James Carter");
appSettings.Save();
tbResults.Text = (string)appSettings["name"];