将这个提取独立存储的代码改为可以读取多行的 WindowsPhone Silverlight C#
//以下是WindowsphoneSilverlight提取独立存储的C#代码//希望各位大神能帮我把它改成可以提取多行的谢谢!!!!!!!//Obtainavirtua...
//以下是Windowsphone Silverlight提取独立存储的C#代码
//希望各位大神能帮我把它改成可以提取多行的 谢谢!!!!!!!
// Obtain a virtual store for the application.
IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
try
{
// Specify the file path and options.
using (var isoFileStream = new IsolatedStorageFileStream("MyFolder\\myFile.txt", FileMode.Open, myStore))
{
// Read the data.
using (var isoFileReader = new StreamReader(isoFileStream))
{
TextBlock1.Text = isoFileReader.ReadLine();
}
}
MessageBox.Show("载入成功");
}
catch
{
MessageBox.Show("错误");
TextBlock1.Text = "";
}
//本人在线等,急!!!!!!!! 展开
//希望各位大神能帮我把它改成可以提取多行的 谢谢!!!!!!!
// Obtain a virtual store for the application.
IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
try
{
// Specify the file path and options.
using (var isoFileStream = new IsolatedStorageFileStream("MyFolder\\myFile.txt", FileMode.Open, myStore))
{
// Read the data.
using (var isoFileReader = new StreamReader(isoFileStream))
{
TextBlock1.Text = isoFileReader.ReadLine();
}
}
MessageBox.Show("载入成功");
}
catch
{
MessageBox.Show("错误");
TextBlock1.Text = "";
}
//本人在线等,急!!!!!!!! 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询