Windows Phone 7 開發 31 日談——第15日:隔離儲存區 (Isolated Storage)

來源:互聯網
上載者:User

本文是“Windows Phone 7 開發 31 日談”系列的第15日。

昨天,我們討論了程式中的墓碑機制從而讓程式看起來是可以在後台啟動並執行。今天,我們來談談在電話中儲存本機資料的一種非常棒的方法。使用隔離儲存區 (Isolated Storage)。

什麼是隔離儲存區 (Isolated Storage)?

    隔離儲存區 (Isolated Storage)不是一個新概念。在Silverlight 2中已經在使用了。本質上說這是一種在本地檔案系統中儲存資料或檔案的方式。“獨立(isolated)”是因為只有你的程式才可以訪問這些資料。如果你有兩個應用程式,同時你想在它們之間共用資料的話,最好使用一些類似雲端式的可以讓你共用資料的服務。一個應用程式不能共用,調用裝置上其他的應用程式或與之進行互動。

設定和檔案

    有兩種方式在本機存放區你的資料。第一是通過庫中的鍵/值對,叫做IsolatedStorageSettings。第二是通過建立真實的檔案和目錄,叫做IsolatedStorageFile。簡要介紹了這些(由MSDN提供),我會為每種方式提供一個深入的例子。

IsolatedStorageSettings

    有很多時候,這可能是你需要的唯一儲存方式。IsolatedStorageSettings允許你在一個字典中儲存鍵/值對(注意,無需任何設定),然後再讀取出來。這些資料會一直儲存著,無論應用程式停止/啟動,或者關機等等。除非你刪除它,或者使用者卸載你的應用程式,否則它一直存在。要記住的一點是在它被添加到字典中之前你無法讀取它。在我的每個例子中,你都會看到在讀取資料之前檢查值是否它存在的代碼。下面的例子是在使用者在你的程式中接收電子郵件更新時需要儲存使用者設定的代碼。我用了一個多選框允許使用者選擇,還有一個將此值儲存到隔離儲存區 (Isolated Storage)中的事件。

代碼using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.IO.IsolatedStorage;

namespace Day15_IsolatedStorage
{
    public partial class MainPage : PhoneApplicationPage
    {
        IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
        
        // Constructor
        public MainPage()
        {
            InitializeComponent();
            InitializeSettings();
        }

        private void InitializeSettings()
        {
            if (settings.Contains("emailFlag"))
            {
                EmailFlag.IsChecked = (bool)settings["emailFlag"];
            }
            else settings.Add("emailFlag", false);
        }

        private void EmailFlag_Unchecked(object sender, RoutedEventArgs e)
        {
            settings["emailFlag"] = false;
        }

        private void EmailFlag_Checked(object sender, RoutedEventArgs e)
        {
            settings["emailFlag"] = true;
        }
    }
}

正如你所見,這非常簡單。請記住以下內容:

  1. 如果還沒在IsolatedStorageSettings中建立就讀取它的值會拋出一個異常。確認你已經初始化了設定,或者總是使用Contains方法先檢查一下。
  2. 你可以在設定中儲存任意內容。在我的例子中,我儲存了一個布爾值,但你可以儲存一個客戶對象,或者任何你能想到的。
  3. 記住當你讀取資料時你需要將它顯示強制轉換。你會看到我在使用之前將資料轉換為bool值。雖然你儲存了對象,但並沒有儲存它的類型。是否能看到類型取決於你自己。
  4. 設定一個值和在庫中添加它效果是一樣。“settings.Add()”的語句實際上不是必需的,我添加它是為了讓你看清文法。

就這些。IsolatedStorageSettings非常簡單。只用極少的代碼就可儲存鍵/值對。建立和儲存檔案相對略複雜一些,但還是十分簡單。

IsolatedStorageFile

    使用IsolatedStorageFile是一種讓你可以在使用者的裝置中儲存真實檔案的機制。在我的例子中,在一個子目錄中建立了一個文字檔,並讀取檔案中的內容。我們還可以建立和刪除目錄,子目錄及檔案。看起來有很多代碼,但實際上非常簡單。我們建立一個新的IsolatedStorageFile對象,並使用一個IsolatedStorageFileStream對象將它寫入到磁碟機中。我在代碼中加入了注釋,這樣你可以更清楚地看到發生了什麼。有兩個事件處理常式,一個用來儲存檔案,另一個讀取:

代碼using System.IO.IsolatedStorage;
using System.IO;

private void SaveButton_Click(object sender, RoutedEventArgs e)
{
    //Obtain a virtual store for application
    IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();

    //Create new subdirectory
    fileStorage.CreateDirectory("textFiles");

    //Create a new StreamWriter, to write the file to the specified location.
    StreamWriter fileWriter = new StreamWriter(new IsolatedStorageFileStream("textFiles\\newText.txt", FileMode.OpenOrCreate, fileStorage));
    //Write the contents of our TextBox to the file.
    fileWriter.WriteLine(writeText.Text);
    //Close the StreamWriter.
    fileWriter.Close();
}

private void GetButton_Click(object sender, RoutedEventArgs e)
{
    //Obtain a virtual store for application
    IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();
    //Create a new StreamReader
    StreamReader fileReader = null;

    try
    {
        //Read the file from the specified location.
        fileReader = new StreamReader(new IsolatedStorageFileStream("textFiles\\newText.txt", FileMode.Open, fileStorage));
        //Read the contents of the file (the only line we created).
        string textFile = fileReader.ReadLine();

        //Write the contents of the file to the TextBlock on the page.
        viewText.Text = textFile;
        fileReader.Close();
    }
    catch
    {
        //If they click the view button first, we need to handle the fact that the file hasn't been created yet.
        viewText.Text = "Need to create directory and the file first.";
    }
}

離開程式時這多像一個迷人的魔術,再回來時,會再次載入檔案(它還在那兒!)。

你都知道了。現在我們在Windows Phone 7中有兩種儲存機制可以用。IsolatedStorageSettings和IsolatedStorageFile。我很樂意聽到你在程式中使用這兩種儲存結構的創新用法。請留言!

下載程式碼範例

這個例子將上面展示的代碼融合到了一個項目中。

原文地址:http://www.jeffblankenburg.com/post/31-Days-of-Windows-Phone-7c-Day-15-Isolated-Storage.aspx

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.