zoukankan      html  css  js  c++  java
  • 请求网络数据(图片or音频)保存到指定路径下到独立存储中及从独立存储中读取指定路径的文件

            private void HttpTestGetImgCallback(HttpCallBackEventArgs e)
            {
                _progressbar.Visibility = Visibility.Collapsed;
                if (e.ErrorCode == (int)HttpStatusCode.OK)
                {
                    //请求返回
                    if (e.Result is byte[])
                    {
                        MemoryStream stream = new MemoryStream(e.Result as byte[]);
                        BitmapImage bmp = new BitmapImage();
                        bmp.SetSource(stream);
                        using (IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication())
                        {
                            string dir = "Fengjing\\Icon\\10021\\143";//保存图片的目录
                            //声明图片保存路径变量
                            string imageSavePath = string.Empty;
                            if (!ISF.DirectoryExists(dir))//判断目录是否存在
                                ISF.CreateDirectory(dir);//创建目录
                            imageSavePath = dir + "\\" + "hello.png";//拼接图片保存路径
                            using (IsolatedStorageFileStream FileStream = ISF.OpenFile(imageSavePath, FileMode.OpenOrCreate, FileAccess.Write))
                            {
                                WriteableBitmap wb = new WriteableBitmap(bmp);
                                wb.SaveJpeg(FileStream, wb.PixelWidth, wb.PixelHeight, 0, 100);
                            }
                        }
                        _img.Source = bmp;
                        _txt.Visibility = Visibility.Collapsed;
                        _img.Visibility = Visibility.Visible;
                    }
                }
                else
                {
                    MessageBox.Show(GetErrorDesc(e.ErrorCode), "", MessageBoxButton.OK);
                }
            }
            public void ReadZImg(string zimgName)
            {
                using (IsolatedStorageFile storageFile = IsolatedStorageFile.GetUserStoreForApplication())
                {
                    BitmapImage bi = new BitmapImage();
                    string fileDir = "Fengjing\\Icon\\10021\\143";
                    if (!storageFile.DirectoryExists(fileDir))//判断目录是否存在
                        storageFile.CreateDirectory(fileDir);//创建目录
                    string filePath = fileDir + "\\" + zimgName;
                    if (storageFile.FileExists(filePath))
                    {
                        using (IsolatedStorageFileStream fileStream = storageFile.OpenFile(filePath, FileMode.Open, FileAccess.Read))
                        {
                            bi.SetSource(fileStream);
                            _img.Source = bi;
                           
                        }
                    }
                    
                }
            }

  • 相关阅读:
    NPOI创建DOCX常用操作
    【Python】django多对多 查询 ,反查等操作
    【Python】python 普通继承方式和super继承方式
    【云计算】开源装机自动化系统 CloudBoot OSInstall 介绍
    【Python】Python AES 对称加密示例
    【Python】Django 如何直接返回404 被 curl,wget 捕获到
    【Python】Django 支持 restful 风格 url
    【Python】Django 聚合 Count与Sum用法,注意点
    【Python】使用 boto 调用 S3 对象存储API
    【Other】千字文 硬笔 楷书 字帖
  • 原文地址:https://www.cnblogs.com/androllen/p/2772128.html
Copyright © 2011-2022 走看看