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;
                           
                        }
                    }
                    
                }
            }

  • 相关阅读:
    python 函数
    谷歌浏览器安装POSTMAN
    Django提示Unknown database处理方法
    Django 连接Mysql异常处理
    Django输入 中文参数保存异常解决方法
    vscode过滤pyc文件
    Jenkins启动和停止服务
    执行robot framework 的测试用例 命令行pybot使用方式
    Jenkins定时任务
    Jenkins构建Python项目失败
  • 原文地址:https://www.cnblogs.com/androllen/p/2772128.html
Copyright © 2011-2022 走看看