朋友, 我创建了一个应用程序,我试图将pdf文件上传到数据库并从数据库中恢复。已成功完成上传。但我无法从数据库中检索该pdf文件。请查看我的代码并建议我从这个问题出来的方法。
protected void Button1_Click(object sender, EventArgs e)
{
SqlCommand cmd1 = new SqlCommand("select Docdata from SaveDoc where DocID='" + TextBox1.Text + "'", con);
con.Open();
byte[] b = null;
SqlDataAdapter da = new SqlDataAdapter();
DataTable dt = new DataTable();
da = new SqlDataAdapter(cmd1);
da.Fill(dt);
if (dt.Rows.Count > 0)
{
b = ((byte[])dt.Rows[0][0]); // Error has came here
Response.ContentType = "application/pdf";
Response.BinaryWrite(b);
}
,错误是“无法将'System.String'类型的对象强制转换为'System.Byte []'。”
答案 0 :(得分:1)
这样做:
b= Encoding.ASCII.GetBytes(dt.Rows[0][0].ToString());