嗨,我有 Web 应用程序,我需要将图像存储到 datatble 的一列中,但是这样做时出现错误。这是我为此尝试的代码。
DataTable dt = new DataTable();
dt.Columns.Add("Companyaddress", typeof(System.String));
dt.Columns.Add("CompEmail", typeof(System.String));
dt.Columns.Add("CompTelephone", typeof(System.String));
dt.Columns.Add("logoname", typeof(byte[]));
//dt.Columns.Add("logoname", typeof(System.Byte[]));
for (int rowNumber = 0; rowNumber < imageDataSet.Tables[0].Rows.Count; rowNumber++)
{
imageDataSet.Tables[0].Rows[rowNumber]["logoname"] = GetByteArray("abc.jpg");
dt.Rows.Add(imageDataSet.Tables[0].Rows[rowNumber][0].ToString(),
imageDataSet.Tables[0].Rows[rowNumber][1].ToString(),
imageDataSet.Tables[0].Rows[rowNumber][2].ToString(),
imageDataSet.Tables[0].Rows[rowNumber][3].ToString());
}
得到错误
值的类型与列类型不匹配无法存储在 logoname 列中。预期类型为 Byte[]。
在这条线上
dt.Rows.Add(imageDataSet.Tables[0].Rows[rowNumber][0].ToString(), imageDataSet.Tables[0].Rows[rowNumber][1].ToString(), imageDataSet.Tables[0].Rows[rowNumber][2].ToString(), imageDataSet.Tables[0].Rows[rowNumber][3].ToString());
这是我调用以获取图像的功能
private byte[] GetByteArray(String strFileName)
{
System.IO.FileStream fs = new System.IO.FileStream(strFileName, System.IO.FileMode.Open);
// initialise the binary reader from file streamobject
System.IO.BinaryReader br = new System.IO.BinaryReader(fs);
// define the byte array of filelength
byte[] imgbyte = new byte[fs.Length + 1];
// read the bytes from the binary reader
imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
// add the image in bytearray
br.Close();
// close the binary reader
fs.Close();
// close the file stream
return imgbyte;
}
该怎么办?需要帮忙。