当前位置: 代码迷 >> ASP.NET >> 请教:怎么把image字段转成System.Io.Stream stream呢
  详细解决方案

请教:怎么把image字段转成System.Io.Stream stream呢

热度:6043   发布时间:2013-02-26 00:00:00.0
请问:如何把image字段转成System.Io.Stream stream呢?
数据库image字段,取出后,存在   (byte[])dr[ "image "]中,
请问,如何把它转成System.Io.Stream呢?

------解决方案--------------------------------------------------------
补充System.Io.Stream的抽象类,可以通过它的派生类创建。
详细看MSDN
------解决方案--------------------------------------------------------
public System.IO.Stream getStream(byte[] buf)
{
System.IO.MemoryStream ms=new System.IO.MemoryStream(buf);
return ms;
}
  相关解决方案