5

我正在尝试将二进制数据转换为其原始格式“.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);
}
4

3 回答 3

10

您正在将文件编写为文本,但您应该编写原始字节。.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 。

于 2013-01-01T15:00:27.240 回答
3

使用原始数据 (binaryData) 尝试 File.WriteAllBytes,不要尝试将其转换为其他任何内容

于 2013-01-01T14:58:25.053 回答
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();
于 2014-04-12T01:18:04.857 回答