用C#实现。 现在我有一个base64的照片数据,如何把它存入到我的sql数据库... 各位高手帮忙...
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用C#实现。 现在我有一个base64的照片数据,如何把它存入到我的sql数据库... 各位高手帮忙...相关的知识,希望对你有一定的参考价值。
// <summary>/// 将图片数据转换为Base64字符串
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ToBase64(object sender, EventArgs e)
Image img = this.pictureBox.Image;
BinaryFormatter binFormatter = new BinaryFormatter();
MemoryStream memStream = new MemoryStream();
binFormatter.Serialize(memStream, img);
byte[] bytes = memStream.GetBuffer();
string base64 = Convert.ToBase64String(bytes);
this.richTextBox.Text = base64;
/// <summary>
/// 将Base64字符串转换为图片
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ToImage(object sender, EventArgs e)
string base64 = this.richTextBox.Text;
byte[] bytes = Convert.FromBase64String(base64);
MemoryStream memStream = new MemoryStream(bytes);
BinaryFormatter binFormatter = new BinaryFormatter();
Image img = (Image)binFormatter.Deserialize(memStream);
this.pictureBox.Image = img;
将图片转换为二进制字符,存入数据库中 参考技术A 通常没人直接存base64.。。
如果一定要存,,,那就用text呗
或者变成二进制流,用Binary类型 参考技术B 尝试关闭连接,看看dataset是否还有数据,有的话就再建立另一个数据库的连接,再插入到表中。如果没有数据,那就把数据保存到变量当中,再建立另一个数据库的连接,再插入到表中。
另外,站长团上有产品团购,便宜有保证 参考技术C 尝试关闭连接,看看dataset是否还有数据,有的话就再建立另一个数据库的连接,再插入到表中。如果没有数据,那就把数据保存到变量当中,再建立另一个数据库的连接,再插入到表中。
参考技术D 尝试关闭连接,看看dataset是否还有数据,有的话就再建立另一个数据库的连接,再插入到表中。如果没有数据,那就把数据保存到变量当中,再建立另一个数据库的连接,再插入到表中。
以上是关于用C#实现。 现在我有一个base64的照片数据,如何把它存入到我的sql数据库... 各位高手帮忙...的主要内容,如果未能解决你的问题,请参考以下文章