• 请求网络数据(图片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;
                           
                        }
                    }
                    
                }
            }

  • 相关阅读:
    从徐飞的文章《Web应用的组件化开发(一)中窥视web应用开发的历史
    【转载】开发者眼中的Spring与Java EE
    matplotlib.pyplot画图包的使用简介 (4) [柱状图]
    matplotlib.pyplot画图包的使用简介 (3) [折线图]
    matplotlib.pyplot画图包的使用简介 (2) [散点图]
    matplotlib.pyplot画图包的使用简介 (1)
    自定义代码实现简单的多元一次线性函数的随机梯度下降
    ajax请求模板
    django的{{}}与js的{{}}冲突解决
    django配置mysql
  • 原文地址:https://www.cnblogs.com/androllen/p/2772128.html
Copyright © 2020-2023  润新知