IsolatedStorageException в приложении Windows Phone 7

Я пытаюсь прочитать файл, не созданный в приложении.

Вот пример, который я попробовал:

string FileName = "stops.txt";
string FolderName = "data";
string FilePath = System.IO.Path.Combine(FolderName, FileName);

IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream fileStream = myIsolatedStorage.OpenFile(FilePath, FileMode.Open, FileAccess.Read);
using (StreamReader reader = new StreamReader(fileStream))
{
    MessageBox.Show(reader.ReadLine());
}

Я выбрасываю "изолированное исключение хранения": ссылка на исключение

System.IO.IsolatedStorage.IsolatedStorageException: [IsolatedStorage_Operation_ISFS]
Arguments: 
Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem. See http://go.microsoft.com/fwlink/?linkid=106663&Version=4.0.50829.0&File=mscorlib.dll&Key=IsolatedStorage_Operation_ISFS
   at System.IO.IsolatedStorage.IsolatedStorageFileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, IsolatedStorageFile isf)
   at System.IO.IsolatedStorage.IsolatedStorageFile.OpenFile(String path, FileMode mode, FileAccess access)
   at HorairesCTS.MainPage.test()
   at HorairesCTS.MainPage..ctor()

Может кто-нибудь помочь мне прочитать этот файл?

Спасибо!

2 ответа

Решение

Если вы попытаетесь прочитать файл, который включен в ваш проект, он не будет в IsolatedStorage, Вам нужно получить к нему доступ через Application.GetResourceStream,

Вот пример кода для чтения локального текстового файла:

private string ReadTextFile(string filePath)
{
    var resourceStream = Application.GetResourceStream(new Uri(filePath, UriKind.Relative));
    Stream myFileStream = resourceStream.Stream;
    StreamReader myStreamReader = new StreamReader(myFileStream);
    return myStreamReader.ReadToEnd();
}

Не забудьте установить Build action в Content о свойствах файла в Visual Studio.

ReadTextFile("data/stops.txt")

Если вы хотите сохранить список объектов. Вы можете сделать это:

IsolatedStorageFileStream outStream = new IsolatedStorageFileStream("MyData.bin", FileMode.Create, myStore);
        DataContractSerializer ser = new DataContractSerializer(typeof(List<ClsUser>));

        ser.WriteObject(outStream, valutaTyperListe);
        outStream.Close();

Получить данные:

IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
if (myStore.FileExists("MyData.bin"))
            {

                IsolatedStorageFileStream inStream = new IsolatedStorageFileStream("MyData.bin", FileMode.Open, myStore);

                DataContractSerializer Serializ = new DataContractSerializer(typeof(List<ClsUser>));
                myUserList = Serializ.ReadObject(inStream) as List<ClsUser>;
                inStream.Close();
            }

И класс выглядит так: не забудьте добавить "using System.Runtime.Serialization;":

[DataContract]
public class ClsUser
{
    string name;
    string lastname;

    public ClsUser(string name, string lastname)
    {
        this.name = name;
        this.lastname = lastname;
    }

     [DataMember]
    public string Name
    {
        get { return name; }
        set { name = value; }
    }

     [DataMember]
    public string Lastname
    {
        get { return lastname; }
        set { lastname = value; }
    }
}
Другие вопросы по тегам