URL形式: // http://localhost:2692/PDFVIEWER/web/viewer.html?file=http://localhost:2692/TOV/DASystem/GetStreaem?path%3Dftp://ftp賬號:ftp密碼@IP地址/0001/E_File ...
URL形式:
// http://localhost:2692/PDFVIEWER/web/viewer.html?file=http://localhost:2692/TOV/DASystem/GetStreaem?path%3Dftp://ftp賬號:ftp密碼@IP地址/0001/E_File3/2017526/test.PDF
註意:PDFVIEWER/web/viewer.html是一個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");
}