详解Silverlight 2中的独立存储(Isolated Storage)

详解Silverlight 2中的独立存储(Isolated Storage),第1张

概述概述 独立存储(Isolated Storage)是Silverlight 2中提供的一个客户端安全的存储,它是一个与Cookie机制类似的局部信任机制。独立存储机制的APIs 提供了一个虚拟的文件系统和可以访问这个虚拟文件系统的数据流对象。Silverlight中的独立存储是基于 .NET Framework中的独立存储来建立的,所以它仅仅是.NET Framework中独立存储的一个子集。 S 概述 独立存储(Isolated Storage)是Silverlight 2中提供的一个客户端安全的存储,它是一个与cookie机制类似的局部信任机制。独立存储机制的APIs 提供了一个虚拟的文件系统和可以访问这个虚拟文件系统的数据流对象。Silverlight中的独立存储是基于 .NET Framework中的独立存储来建立的,所以它仅仅是.NET Framework中独立存储的一个子集。 Silverlight中的独立存储有以下一些特征: 1.每个基于Silverlight的应用程序都被分配了属于它自己的一部分存储空间,但是应用程序中的程序集却是在存储空间中共享的。一个应用程序被服务器赋给了一个唯一的固定的标识值。基于Silverlight的应用程序的虚拟文件系统现在就以一个标识值的方式来访问了。这个标识值必须是一个常量,这样每次应用程序运行时才可以找到这个共享的位置。   2.独立存储的APIs 其实和其它的文件 *** 作APIs类似,比如 file 和 Directory 这些用来访问和维护文件或文件夹的类。 它们都是基于fileStream APIs 来维护文件的内容的。 3.独立存储严格的限制了应用程序可以存储的数据的大小,目前的上限是每个应用程序为1 MB。 使用独立存储 Silverlight中的独立存储功能通过密封类IsolatedStoragefile来提供,位于命名空间System.IO.IsolatedStorag中,IsolatedStoragefile类抽象了独立存储的虚拟文件系统。创建一个 IsolatedStoragefile 类的实例,可以使用它对文件或文件夹进行列举或管理。同样还可以使用该类的 IsolatedStoragefileStream 对象来管理文件内容,它的定义大概如下所示:

在Silverlight 2中支持两种方式的独立存储,即按应用程序存储或者按站点存储,可以分别使用GetUserStoreForApplication方法和GetUserStoreForSite方法来获取IsolatedStoragefile对象。下面看一个简单的示例,最终的效果如下图所示:  

下面来看各个功能的实现: 创建目录,直接使用CreateDirectory方法就可以了,另外还可以使用DirectoryExistes方法来判断目录是否已经存在:
voID btnCreateDirectory_Click(object sender,RoutedEventArgs e){    using (IsolatedStoragefile store =                    IsolatedStoragefile.GetUserStoreForApplication())    {        String directoryname = this.txtDirectoryname.Text;        if (this.lstDirectorIEs.SelectedItem != null)        {            directoryname = System.IO.Path.Combine(this.lstDirectorIEs.SelectedItem.ToString(),directoryname);        }        if (!store.DirectoryExists(directoryname))        {            store.CreateDirectory(directoryname);            HTMLPage.Window.Alert("创建目录成功!");        }    }}
创建文件,通过Createfile方法来获取一个IsolatedStoragefileStream,并将内容写入到文件中:
voID btnCreatefile_Click(object sender,RoutedEventArgs e){    if (this.lstDirectorIEs.SelectedItem == null &&        this.txtDirectoryname.Text == "")    {        HTMLPage.Window.Alert("请先选择一个目录或者输入目录名");        return;    }    using (IsolatedStoragefile store =                       IsolatedStoragefile.GetUserStoreForApplication())    {        String filePath;        if (this.lstDirectorIEs.SelectedItem == null)        {            filePath = System.IO.Path.Combine(this.txtDirectoryname.Text,this.txtfilename.Text + ".txt");        }        else        {            filePath = System.IO.Path.Combine(this.lstDirectorIEs.SelectedItem.ToString(),this.txtfilename.Text + ".txt");        }                IsolatedStoragefileStream fileStream = store.Createfile(filePath);        using (StreamWriter sw = new StreamWriter(fileStream))        {            sw.Writeline(this.txtfileContent.Text);        }        fileStream.Close();        HTMLPage.Window.Alert("写入文件成功!");    }}
读取文件,直接使用System.IO命名空间下的StreamReader:
voID btnReadfile_Click(object sender,RoutedEventArgs e){    if (this.lstDirectorIEs.SelectedItem == null ||        this.lstfiles.SelectedItem == null)    {        HTMLPage.Window.Alert("请先选择目录和文件!");        return;    }    using (IsolatedStoragefile store =                       IsolatedStoragefile.GetUserStoreForApplication())    {        String filePath = System.IO.Path.Combine(this.lstDirectorIEs.SelectedItem.ToString(),this.lstfiles.SelectedItem.ToString());        if (store.fileExists(filePath))        {            StreamReader reader = new StreamReader(store.Openfile(filePath,fileMode.Open,fileAccess.Read));            this.txtfileContent.Text = reader.ReadToEnd();            this.txtDirectoryname.Text = this.lstDirectorIEs.SelectedItem.ToString();            this.txtfilename.Text = this.lstfiles.SelectedItem.ToString();        }    }}
删除目录和文件:
voID btnDeletefile_Click(object sender,RoutedEventArgs e){    if (this.lstDirectorIEs.SelectedItem != null &&       this.lstfiles.SelectedItem != null)    {        using (IsolatedStoragefile store =                       IsolatedStoragefile.GetUserStoreForApplication())        {            String filePath = System.IO.Path.Combine(this.lstDirectorIEs.SelectedItem.ToString(),this.lstfiles.SelectedItem.ToString());            store.Deletefile(filePath);            HTMLPage.Window.Alert("删除文件成功!");        }    }}voID btnDeleteDirectory_Click(object sender,RoutedEventArgs e){    if (this.lstDirectorIEs.SelectedItem != null)    {        using (IsolatedStoragefile store =                       IsolatedStoragefile.GetUserStoreForApplication())        {            store.DeleteDirectory(this.lstDirectorIEs.SelectedItem.ToString());            HTMLPage.Window.Alert("删除目录成功!");        }    }}
获取目录列表和文件列表:
voID lstDirectorIEs_SelectionChanged(object sender,SelectionChangedEventArgs e){    if (lstDirectorIEs.SelectedItem != null)    {        using (IsolatedStoragefile store =                        IsolatedStoragefile.GetUserStoreForApplication())        {            String[] files = store.Getfilenames(                this.lstDirectorIEs.SelectedItem.ToString() + "/");            this.lstfiles.ItemsSource = files;        }    }}voID BindDirectorIEs(){    using (IsolatedStoragefile store =                     IsolatedStoragefile.GetUserStoreForApplication())    {        String[] directorIEs = store.GetDirectorynames("*");        this.lstDirectorIEs.ItemsSource = directorIEs;    }}
增加配额 在本文一开始我就提到独立存储严格的限制了应用程序可以存储的数据的大小,但是我们可以通过IsolatedStoragefile类提供的IncreaseQuotaTo方法来申请更大的存储空间,空间的大小是用字节作为单位来表示的,如下代码片段所示,申请独立存储空间增加到5M:
using (IsolatedStoragefile store = IsolatedStoragefile.GetUserStoreForApplication()){    long newQuetaSize = 5242880;    long curAvail = store.AvailableFreeSpace;    if (curAvail < newQuetaSize)    {        store.IncreaseQuotaTo(newQuetaSize);    }}
当我们试图增加空间大小时浏览器将会d出一个确认对话框,供我们确认是否允许增加独立存储的空间大小。

  文件被存往何处 既然独立独立存储是存放在客户端本地,那到底存放在何处呢?在我个人计算机上的地址为:C:\Users\TerryLee\AppData\LocalLow\Microsoft\Silverlight\is\035kq51b.2q4\pksdhgue.3rx\1,不同机器会有一些变化,另外在XP下的存储位置与Vista是不相同的。在g文件夹下面,我们找到当前应用程序的一些公有信息,可以看到有如下三个文件:

ID.dat记录了当前应用程序的ID quota.dat记录了当前应用程序独立存储的配额,即存储空间大小 used.dat记录已经使用的空间 在另一个s文件夹下可以找到我们创建的目录以及文件,并且可以打开文件来看到存储的内容,如下图所示:

禁用独立存储 现在我们来思考一个问题,既然独立存储是一个与cookie机制类似的局部信任机制,我们是否也可以禁用独立存储呢?答案自然是肯定的。在Silverlight应用程序上点击右键时,选择Silverlight Configuration菜单,将会看到如下窗口:

在这里我们可以看到每一个应用程序存储空间的大小以及当前使用的空间;可以删除应用程序独立存储数据或者禁用独立存储的功能。 独立存储配置 最后在简单说一下独立存储配置,在Beta 1时代是应用程序配置,现在不仅支持应用程序配置,同时还支持站点配置,我们可以用它来存储应用程序配置如每个页面显示的图片数量,页面布局自定义配置等等,使用IsolatedStorageSettings类来实现,该类在设计时使用了字典来存储名-值对,它的使用相当简单:
IsolatedStorageSettings appSettings =     IsolatedStorageSettings.ApplicationSettings;appSettings.Add("mykey","myValue");appSettings.Save();IsolatedStorageSettings siteSettings =    IsolatedStorageSettings.SiteSettings;siteSettings.Add("mykey1","myValue1");siteSettings.Save();
独立存储配置的机制与我们上面讲的一样,它也是基于本地文件存储,系统默认的会创建一个名为__LocalSettings的文件进行存储,如下图所示:

打开文件后可以看到,存储的内容(此处进行了整理)
<ArrayOfkeyvalueOfstringanyType   xmlns:i="[url]http://www.w3.org/2001/XMLSchema-instance[/url]"  xmlns="[url]http://schemas.microsoft.com/2003/10/Serialization/Arrays[/url]">  <keyvalueOfstringanyType>    <Key>mykey</Key>    <Value xmlns:d3p1="[url]http://www.w3.org/2001/XMLSchema[/url]"            i:type="d3p1:string">myValue</Value>  </keyvalueOfstringanyType></ArrayOfkeyvalueOfstringanyType>
值得一提的是使用独立存储配置不仅仅可以存储简单类型的数据,也可以存储我们自定义类型的数据。 小结 本文详细介绍了Silverlight 2中的独立存储机制,希望对大家有所帮助。 示例下载:

本文出自 “TerryLee技术专栏” 博客,请务必保留此出处http://www.voidcn.com/article/p-fprdwrrk-wq.html

@H_117_502@
0人 了这篇文章
类别: Silverlight┆阅读( 0)┆评论( 0) ┆ 返回博主首页┆ 返回博客首页 上一篇 Silverlight 2中多语言支持实现(下) 下一篇 在Silverlight 2应用程序中集成Virtual Earth

相关文章 在silverlight中使用IsolateStore隔离存储(下) 一步一步学Silverlight 2系列(19):如何在.. 一步一步学Silverlight 2系列(32):图形图.. Silverlight for Linux 网上Silverlight项目收集 职位推荐 C#工程师/.NET开发工程师 高级.NET开发工程师 .net开发工程师 .NET研发工程师 软件开发工程师 文章评论   2008-06-30 11:37:46 以前没学过 现在好好学学 博主文章很好啊
2008-07-01 12:53:11 @Bnsen
尽量写出好文章来:)
2009-10-28 09:48:05 您好,谢谢分享,请问能不能发一下这个例子的打包源程序?谢谢。
chenlin198412@126.com
 

每日博报 精彩不止一点

copyright By 51CTO.COM 版权所有

总结

以上是内存溢出为你收集整理的详解Silverlight 2中的独立存储(Isolated Storage)全部内容,希望文章能够帮你解决详解Silverlight 2中的独立存储(Isolated Storage)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1055131.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存