MemoryStream ms=new MemoryStream();
using (FileStream fs = new FileStream("C:\\1.jpg", FileMode.Create))
{
      BinaryWriter bw = new BinaryWriter(fs);
      bw.Write(ms.ToArray()); 
      bw.Close();
      fs.Flush();
}

相关文章:

  • 2021-11-06
  • 2021-08-10
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2022-12-23
相关资源
相似解决方案