zoukankan      html  css  js  c++  java
  • window phone 独立存储空间System.IO.IsolatedStorage

    window phone 独立存储空间System.IO.IsolatedStorage

    window phone中的程序不能随便读取和存储手机中数据,window phone定义了一个专门的机制为每个程序指定特殊的区域来存储读取数据。叫做独立存储

    在window phong中System.io下只有IsolatedStorage这个命名空间。

    独立存储空间

    独立存储空间是一个虚拟的文件系统,每个应用程序只能访问自己的存储空间,不能访问其他的。

    独立存储空间又1个或多个独立文件组成,也有文件夹系统。

    主要用的方法有两个

    1.key/value模式的配置类           

    System.IO.IsolatedStorage.IsolatedStorageSettings setting = IsolatedStorageSettings.ApplicationSettings;

     setting.Add();
                setting.Contains();
                setting.Remove();
                setting.TryGetValue();
                setting["key"] = “Value”;

     默认情况下IsolatedStorageSettings在应用程序关闭的时候才会写入独立存储空间中,为了防止应用程序意外中断可以使用Save()方法强制写入独立存储空间


    2.存储和读取文件模式

    IsolatedStorageFile这个类可以用来保存和读取文件, IsolatedStorageFileStream 这个用来读取和写入文件

    using(System.IO.IsolatedStorage.IsolatedStorageFile file = IsolatedStorageFile.GetUserStoreForApplication())

    {}

    IsolatedStorageFile.GetUserStoreForApplication()这个方法得到该应用程序对应的用户独立存储空间。

    一段代码示例

    using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
    {
    WriteableBitmap bmImage = new WriteableBitmap(image);
    if (!store.DirectoryExists("Images"))
    {
    store.CreateDirectory("Images");
    }
    using (IsolatedStorageFileStream isoStream =
    store.OpenFile(@"Images\userPhoto.jpg", FileMode.OpenOrCreate))
    {
    Extensions.SaveJpeg(
    bmImage,
    isoStream,
    bmImage.PixelWidth,
    bmImage.PixelHeight,
    0,
    100);
    }
    }
    





  • 相关阅读:
    springmvc介绍
    mybatis中的动态sql应用
    mybatis中表的关联
    mybatis分页
    聚类评估指标系列(二):准确率和F值
    混淆矩阵,准确率,召回率,F-score,PR曲线,ROC曲线,AUC
    聚类评估指标系列(一):标准化互信息NMI计算步骤及其Python实现
    numpy.where() 用法详解
    互信息Mutual Information
    转:Prewitt算子、Sobel算子、canny算子、Lapacian算子
  • 原文地址:https://www.cnblogs.com/zjypp/p/2338885.html
Copyright © 2011-2022 走看看