随笔 - 705  文章 - 0  评论 - 1103  阅读 - 138万 

Silverlight  独立存储 好比Cookie一样,可以在客户端存储信息,但是他更加强大,独立存储提供了客户端指定目录下的读写权限,可以任意的向其中添加删除修改读取文件。

独立存储将文件存储在系统盘-当前用户-本地的-指定文件夹当中。

独立存储有两个作用域 应用程序级别和站点级别 他就像是一个为Silverlight专门提供的文件夹,用来存放Silverlight的文件信息,比如XML、TXT、Dat、Html等,格式不限只要对你有用。

 

基础操作语法

using System.IO.IsolatedStorage;
using System.IO;
       void CreateDir(string dirName)
       {
           IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication();
           storeFile.CreateDirectory(dirName);
       }

       void SaveFile(string savePath, string content)
       {
           IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication();
           IsolatedStorageFileStream sf = storeFile.CreateFile(savePath);
           using (StreamWriter sw = new StreamWriter(sf))
           {
               sw.WriteLine(content);
           }
           sf.Close();
       }

       void LoadFile(string readPath)
       {
           string content = string.Empty;
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               if (storeFile.FileExists(readPath))
               {
                   StreamReader sr =
                       new StreamReader(storeFile.OpenFile
                           (readPath, FileMode.Open, FileAccess.Read));
                   content = sr.ReadToEnd();
               }
           }
       }

       void DeleteFile(string path)
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               storeFile.DeleteFile(path);
           }
       }

       void DeleteDir(string dirPath)
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               storeFile.DeleteDirectory(dirPath);
           }
       }

       void LoadDirs()
       {
           using (IsolatedStorageFile storeFile =
               IsolatedStorageFile.GetUserStoreForApplication())
           {
               var itemSource = storeFile.GetDirectoryNames("*");
           }
       }

名值对方式存储读取

这种方式就很像Cookie了
       string ReadSettings(string key)
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           return settings[key].ToString();
       }

       void SaveSettings(string key, string value)
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           settings.Add(key, value);
           settings.Save();
       }

       void ClearSettings()
       {
           IsolatedStorageSettings settings =
               IsolatedStorageSettings.ApplicationSettings;
           settings.Clear();
       }

独立存储的文件与名值对分别有两个示例,可以在目录地址链接下载代码阅读。

独立存储的空间大小

独立存储默认的空间上限是1M,可以通过代码设置让这个上限加大。代码如下

           //使1用?应|用?程ì序ò存?储¢创′建¨对?象ó
            using (IsolatedStorageFile storeFile =
                IsolatedStorageFile.GetUserStoreForApplication())
            {
                //获?取?旧é空?间?大ó小?
                long oldSize = storeFile.AvailableFreeSpace;
                //定¨义?新?增?空?间?大ó小?
                long newSize = 2097152;
                if (oldSize < newSize)
                {
                    //分?配?新?的?存?储¢空?间?
                    storeFile.IncreaseQuotaTo(newSize);
                }
            }

 

客户可以通过邮件Silverlight 控件选择Silverlight配置中 ->应用程序存储选项卡 中查看本地有存储了那些Silverlight应用存储信息。

image

posted on   冯瑞涛  阅读(926)  评论(1编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示