上一節我們聊了目錄的操作,這一節我們繼續來看看如何讀寫檔案。
首先說一下題外話,許多朋友都在搖擺不定,三心二意,其實這樣的學習態度是很不好的,如果你對Windows phone開發有興趣,如果你真想學習,你就應該一心一意,靜下心來學習。
如果你不喜歡Windows phone開發,那你不必要徘徊,你可以選擇IOS、Android或者其它平台。
只要你選擇了,你應該要相信你所選擇的,記得有一句話是這樣說的:選擇你所愛的,愛你所選擇的,雖然這個比方不大合適,但意思是相近的。
其實,說到底,不是編程有多麼難學,而很多半途而廢的,其根本問題就是學習態度,我們不應該說我們的長輩,像60、70後的這一輩人怎麼落後,怎麼跟不上時代了,對的,從知識的積累和技能上說,我們的長輩們的的確確跟不上時代了,但是,他們身上有一個優點,這個優點是我們80後,90後的年輕人身上所沒有的,那就是執著,敢於吃苦的精神,這是事實,希望各位朋友要正視這一點,人不怕缺點多,就怕你不敢面對你的缺點。
作為青春年少的我們,更應該有一種“敢於直面慘淡的人生,敢於正視淋漓的鮮血”的勇氣。
只要你喜歡,不用擔心Windows phone的未來,就好像當年你不必要擔心.NET的前途一個道理,也不要被一些新聞和評論嚇倒,作為理性的主體,我們更應該分辨真偽,許多新聞評論都是在誤導我們。
不要管它微軟動作慢不慢,市場目前是很小,但你知道,存在必有其價值,IT巨頭們都在激烈競爭,作為開發人員,我們只需要腳踏實地去學習。
最近,Google和甲骨文的員工在努力學習法律知識,而微軟的員工在努力學習市場營銷學,其實從這些現象我們知道,無論開源閉源,都各有優缺點,能在二者之間取得一個平衡,才是王道。
好了,廢話就說到這裡,今天的內容很簡單,所以我才說那麼多題外話,目的就是告訴各位WP開發人員,不要浮躁,只要你能把WP開發的技能練得出神入化,哪怕它市場很小,你也能賺大錢,馬寧就是一個成功案例。
隔離儲存的檔案讀寫與我們過去在其它.NET開發中的檔案讀寫是沒有區別的,只是在WP上我們用IsolatedStorageFileStream,而不是傳統的FileStream罷了,說白了,就是換了一個類名,所有操作都一樣,至於你信不信,反正我是信了。
現在,我用一個樣本來證明,讀寫檔案有多麼簡單。
建立一個項目,在首頁面上放一個文字框,用來輸入要寫入檔案的內容,放兩個按鈕,一個用於寫操作,一個用於讀操作,再放一個TextBlock,用於顯示從檔案讀入的內容。XAML布局如下所示。
[html] view plaincopyprint?
- <phone:PhoneApplicationPage
- x:Class="PhoneApp1.MainPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
- xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
- FontFamily="{StaticResource PhoneFontFamilyNormal}"
- FontSize="{StaticResource PhoneFontSizeNormal}"
- Foreground="{StaticResource PhoneForegroundBrush}"
- SupportedOrientations="Portrait" Orientation="Portrait"
- shell:SystemTray.IsVisible="True">
- <StackPanel>
- <StackPanel Margin="0,25" Orientation="Vertical">
- <TextBox Name="txtContent" HorizontalAlignment="Stretch" Height="185" ScrollViewer.VerticalScrollBarVisibility="Auto" TextWrapping="Wrap"/>
- <Button Name="btnWrite" HorizontalAlignment="Stretch" Height="auto" Content="將內容寫入到檔案" Click="btnWrite_Click"/>
- </StackPanel>
- <StackPanel Margin="0,25" Orientation="Vertical">
- <Button HorizontalAlignment="Stretch" Content="從檔案中讀入" Name="btnRead" Click="btnRead_Click"/>
- <TextBlock Name="txtDisplay" HorizontalAlignment="Stretch" Height="358" ScrollViewer.VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" FontSize="35"/>
- </StackPanel>
- </StackPanel>
-
- </phone:PhoneApplicationPage>
後台C#如下所示。
[csharp] view plaincopyprint?
- 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;
- using System.IO.IsolatedStorage;
-
- namespace PhoneApp1
- {
- public partial class MainPage : PhoneApplicationPage
- {
- // 常量
- const string MyDir = "MyData";
- const string testFileName = "file";
-
- // 建構函式
- public MainPage()
- {
- InitializeComponent();
- this.Loaded += (sender, e) =>
- {
- using (var iso = IsolatedStorageFile.GetUserStoreForApplication())
- {
- if (iso.DirectoryExists(MyDir) == false)
- {
- iso.CreateDirectory(MyDir);
- }
- }
- };
- }
-
-
- private void btnWrite_Click(object sender, RoutedEventArgs e)
- {
- using (var iso = IsolatedStorageFile.GetUserStoreForApplication())
- {
- using (var sr = iso.CreateFile(MyDir + "\\" + testFileName))
- {
- StreamWriter sw = new StreamWriter(sr);
- sw.Write(txtContent.Text);
- sw.Close();
- sw.Dispose();
- }
- }
- }
-
- private void btnRead_Click(object sender, RoutedEventArgs e)
- {
- using (var iso = IsolatedStorageFile.GetUserStoreForApplication())
- {
- var sr = iso.OpenFile(MyDir + "\\" + testFileName, FileMode.Open, FileAccess.Read);
- StreamReader reader = new StreamReader(sr);
- string info = reader.ReadToEnd();
- reader.Close();
- reader.Dispose();
- sr.Close();
- sr.Dispose();
- txtDisplay.Text = info;
- }
- }
- }
- }
上面的代碼,我想各位能看得懂的,是的,就是這麼簡單,現在你相信了吧。
來,看看運後的結果吧。