为什么我多了一个角色

本文关键字:一个 角色 为什么 | 更新日期: 2023-09-27 17:59:14

你好,我正在使用这个C#代码上传图像。

 protected void UploadFile(object sender, EventArgs e)
{
    string filename = Path.GetFileName(FileUpload1.PostedFile.FileName);
    string contentType = FileUpload1.PostedFile.ContentType;
    using (Stream fs = FileUpload1.PostedFile.InputStream)
    {
        using (BinaryReader br = new BinaryReader(fs))
        {
            byte[] bytes = br.ReadBytes((Int32)fs.Length);
            string constr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
            using (MySqlConnection con = new MySqlConnection(constr))
            {
                string query = "INSERT INTO foto(FileName, ContentType, Content) VALUES (@FileName, @ContentType, @Content)";
                using (MySqlCommand cmd = new MySqlCommand(query))
                {
                    cmd.Connection = con;
                    cmd.Parameters.AddWithValue("@FileName", filename);
                    cmd.Parameters.AddWithValue("@ContentType", contentType);
                    cmd.Parameters.AddWithValue("@Content", bytes);
                    con.Open();
                    cmd.ExecuteNonQuery();
                    con.Close();
                }
            }
        }
    }
    Response.Redirect(Request.Url.AbsoluteUri);
}

我在一个longblob字段中上传图像,然后使用C#WebService、AJAX、JavaScript显示图像,将图像转换为Base64String,但图像显示为不存在。

这是我的Base64String:

Base64字符串

正如你所看到的,问题在于这个额外的字符:

AAEAAAD/////AQAAAAAAAAAPAQAAAHgBAAAC

为什么会发生这种情况?我该如何解决?

为什么我多了一个角色

你能用上面的代码替换咆哮的行吗

      protected void UploadFile(object sender, EventArgs e)
        {
        string filename = Path.GetFileName(FileUpload1.PostedFile.FileName);
        string contentType = FileUpload1.PostedFile.ContentType;
        using (Stream fs = FileUpload1.PostedFile.InputStream)
            {
            using (BinaryReader br = new BinaryReader(fs))
                {
                System.Drawing.Image imagetuUpload = System.Drawing.Image.FromStream(fs);
                Bitmap bitmap = new Bitmap(imagetuUpload);
                System.IO.MemoryStream stream = new MemoryStream();
                bitmap.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
                stream.Position = 0;
                byte[] upproimag = new byte[stream.Length + 1];
                stream.Read(upproimag, 0, upproimag.Length);
                string constr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
                using (MySqlConnection con = new MySqlConnection(constr))
                    {
                    string query = "INSERT INTO foto(FileName, ContentType, Content) VALUES (@FileName, @ContentType, @Content)";
                    using (MySqlCommand cmd = new MySqlCommand(query))
                        {
                        cmd.Connection = con;
                        cmd.Parameters.AddWithValue("@FileName", filename);
                        cmd.Parameters.AddWithValue("@ContentType", contentType);
                        cmd.Parameters.AddWithValue("@Content", upproimag);
                        con.Open();
                        cmd.ExecuteNonQuery();
                        con.Close();
                        }
                    }
                }
            }
        Response.Redirect(Request.Url.AbsoluteUri);
        }

我希望它能帮助你:)

很久以前我也遇到过同样的问题,我不记得当时除了做这个:

我检查我是否错了或不去这里:

http://jsfiddle.net/hpP45/ 

我尝试先解码(谷歌bse64解码器)

https://www.base64decode.org/ 

并将解码后的二进制数据保存为jpeg文件并打开。

如果它没有打开,那么我想,你的base64编码可能有问题