如何查看保存在DB中的pdf文件

时间:2014-11-26 09:08:54

标签: vb.net pdf

这是下载但我只想显示。请帮帮我

  . . . . . . . . . . . . . 
                fs.Write(fileData, 0, fileData.Length)
                'Set image variable value using memory stream. 
                fs.Flush()
                fs.Close()
            End Using


            ShellEx(Me.Handle, "Open", sFileName, "", "", 10)
        End If

    Catch ex As Exception
        MsgBox(ex.Message)
    End Try

End Sub

1 个答案:

答案 0 :(得分:0)

从DB获取二进制对象[pdf文件]后,将其写入磁盘

System.IO.File.WriteAllBytes("c:\xxx\file.pdf", binaryData)

然后,使用分配给打开pdf文件的默认程序启动进程

System.Diagnostics.Process.Start("c:\xxx\file.pdf")