qq_33732665 2016-12-02 05:47 采纳率: 0%
浏览 1353

长二进制数据输出乱码问题 求大神帮忙!

图片说明
string strCnn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\att2000.mdb;Persist Security Info=True";
OleDbConnection myConnection = new OleDbConnection(strCnn);
myConnection.Open();
OleDbCommand command = new OleDbCommand("select * from Template ", myConnection);
OleDbDataReader dr = command.ExecuteReader();

        byte[] buff = null;
        string aaa = "";
        string bbb = "";
        if (dr.Read())
        {
            buff = (byte[])dr["Template4"];
        }
        //System.IO.MemoryStream ms = new System.IO.MemoryStream(buff);
        ////通过流对象建立Bitmap
        //System.Drawing.Bitmap bmp = new Bitmap(ms);
        //bmp.Save("e:\\SampImag.jpg");
        myConnection.Close();
        System.IO.FileStream stream = new System.IO.FileStream(Server.MapPath("m.txt"),System.IO.FileMode.CreateNew, System.IO.FileAccess.Write);
        System.IO.BinaryWriter bw = new System.IO.BinaryWriter(stream);
        bw.Write(buff);
        bw.Close();
        stream.Close();

取的是别人数据库上的数据,也不知道原来什么格式。谁能帮忙指点下!

  • 写回答

2条回答 默认 最新

  • shen_wei 2016-12-02 06:44
    关注

    //System.Drawing.Bitmap bmp = new Bitmap(ms);
    //bmp.Save("e:\SampImag.jpg");

    那您试试注释掉的代码,看能否保存成功??、

    评论

报告相同问题?

悬赏问题

  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题