我正在尝试将二进制数据转换为其原始格式“.PDF”,但我解决了这两种解决方案。第一个是一个小的,它创建一个PDF文件但它看起来是空的。第二个也创建一个PDF文件,但我无法打开它。错误在哪里?
第一个代码:
Conn.Open();
SqlCommand cmd = Conn.CreateCommand();
cmd.CommandText = "Select Artigo From Artigo WHERE (IDArtigo ='" + id + "')";
byte[] binaryData = (byte[])cmd.ExecuteScalar();
string s = Encoding.UTF8.GetString(binaryData);
File.WriteAllText("algo.pdf", s);
第二段代码:
Conn.Open();
SqlCommand cmd = Conn.CreateCommand();
cmd.CommandText = "Select Artigo From Artigo WHERE (IDArtigo ='" + id + "')";
byte[] binaryData = (byte[])cmd.ExecuteScalar();
// Convert the binary input into Base64 UUEncoded output.
string base64String;
try
{
base64String = System.Convert.ToBase64String(binaryData, 0, binaryData.Length);
}
catch (System.ArgumentNullException)
{
MessageBox.Show("Binary data array is null.");
return;
}
cmd.CommandText = "Select Titulo From Artigo WHERE (IDArtigo ='" + id + "')";
string titulo = (string)cmd.ExecuteScalar();
// Write the UUEncoded version to the output file.
System.IO.StreamWriter outFile;
try
{
outFile = new StreamWriter(titulo + ".pdf", false, System.Text.Encoding.ASCII);
outFile.Write(base64String);
outFile.Close();
}
catch (System.Exception exp)
{
System.Console.WriteLine("{0}", exp.Message);
}
答案 0 :(得分:8)
您正在将文件写为文本,但您应该编写原始字节。 .PDF文件是二进制文件,而不是文本文件,因此实际上,您在第一个代码示例中填写了错误的数据。
尝试
Conn.Open();
SqlCommand cmd = Conn.CreateCommand();
cmd.CommandText = "Select Artigo From Artigo WHERE (IDArtigo = @id)";
cmd.Parameters.AddWithValue("@id", id);
byte[] binaryData = (byte[])cmd.ExecuteScalar();
File.WriteAllBytes(("algo.pdf", binaryData);
string s = Encoding.UTF8.GetString(binaryData);
如果您有更多问题,System.IO.File.WriteAllBytes会记录在http://msdn.microsoft.com/en-us/library/system.io.file.writeallbytes.aspx。
答案 1 :(得分:3)
使用原始数据(binaryData)尝试File.WriteAllBytes,不要尝试将其转换为其他任何内容
答案 2 :(得分:0)
string sql = "select Lsn_File from Lessons_tbl where Lsn_name = '"TextBox1.Text + "'";
cmd = new SqlCommand(sql, dal.cn());
dal.Open();
SqlDataReader dr = cmd.ExecuteReader();
dr.Read();
if (dr.HasRows)
{
byte[] lesson = (byte[])(dr[0]);
spathfile = System.IO.Path.GetTempFileName();
//move from soures to destination the extension until now is .temp
System.IO.File.Move(spathfile,
System.IO.Path.ChangeExtension(spathfile,".pdf"));
//make it real pdf file extension .pdf
spathfile = System.IO.Path.ChangeExtension(spathfile, ".pdf");
System.IO.File.WriteAllBytes(spathfile, lesson );
this.axAcroPDF1.LoadFile(spathfile);
dal.close();