当前位置 : 主页 > 网络编程 > 其它编程 >

ftp服务器PDF文件在线查看的实现方法

来源:互联网 收集:自由互联 发布时间:2023-07-02
URL形式:http:localhost:2692PDFVIEWERwebviewer.htmlfilehttp:localhost:2692TOVDASystemGetStreaempath%3Dftp:ftp账号: URL形式: // http://localhost:2692/PDFVIEWER/web/viewer.htmlfile=http://localhost:2692/TOV/DASystem/GetStreaempath%3Df
URL形式:http:localhost:2692PDFVIEWERwebviewer.htmlfilehttp:localhost:2692TOVDASystemGetStreaempath%3Dftp:ftp账号:

URL形式:

// http://localhost:2692/PDFVIEWER/web/viewer.htmlfile=http://localhost:2692/TOV/DASystem/GetStreaempath%3Dftp://ftp账号:ftp密码@IP地址/0001/E_File3/2017526/test.PDF

注意:PDFVIEWER/web/viewer.html是一个PDF插件地址链接

ftp服务器PDF文件在线查看的实现方法

后台方法,将ftp服务器上的PDF文件转成二进制流进行读取

using System.Net;public FileStreamResult GetStreaem(string path){var reqFtp = (FtpWebRequest)WebRequest.Create(new Uri(path));reqFtp.Method = WebRequestMethods.Ftp.DownloadFile;reqFtp.UseBinary = true;//reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);reqFtp.UsePassive = false; //选择主动还是被动模式 , 这句要加上的。reqFtp.KeepAlive = false;//一定要设置此属性,否则一次性下载多个文件的时候,会出现异常。var respOnse= (FtpWebResponse)reqFtp.GetResponse();var ftpStream = response.GetResponseStream();return File(ftpStream, "application/pdf", "ib70guide.pdf");}

以上这篇ftp服务器PDF文件在线查看的实现方法就是自由互联小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程笔记。

上一篇:请问酷狗音乐盒怎么设置歌曲伴奏啊
下一篇:没有了
网友评论