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

  • 相关阅读:
    Select列表操作函数
    IBM职业之路—职业规划和技术发展(转自LU)听听前辈的意见
    C#上传下载文件ftp操作类FTPClient代码(转)
    C# FTP操作类
    UML基础
    DevExpress控件之XtraTreeList
    认识UML类图元素
    C#读写EXCEL
    C#正则表达式整理备忘
    面向对象程序可视化类图的逆向自动生成
  • 原文地址:https://www.cnblogs.com/androllen/p/2772128.html
Copyright © 2011-2022 走看看