最近要用asp.net应用程序访问放在前置机内的文件,在网上找到几个方法。试用了并说一下使用感受。
1) 使用“本地系统”模式
程序在外网环境和本地调试环境对读取文件和访问的权限不是一样的。所以程序需要“特殊”对待。当然,也可以在IIS中,为web程序单独建立一个应用程序池,将运行模式变为“本地系统”模式。这样做有利有弊。利在于仅改变IIS设置,弊端是将控制权拱手让人,安全性下降很多。
2) 映射加虚拟目录
a. 映射网络地址,假设这里映射为“Z:\”,一般为了安全会提供一个用户名和密码给你,假设为 user1和pwd1,在iis里添加一个虚拟目录,假设为“/out”,指到“Z:\”。
b. 在windows用户管理里添加一个用户,用户名和密码容上面提供的用户名和密码(在这里为user1和pwd1),然后将此用户改为administrator(即管理员)组,如果有必要可以限制此用户远程登录机器,这样可以保证一定的安全性。
c. 在需要读取映射盘的目录上加一个web.config,在system.web节点下添加一个节点:<identity impersonate=”true” userName=”user1″ password=”pwd1″/>(用户名和密码同上)。
d. 这样所有的设置就好了,测试下读取/out目录中的内容:Directory.Exists(Server.MapPath(”/out”));,应该是放回true了。
说明一下,本人按此方法没有实验成功。返回的是false.说我没有相应的权限。感觉这样也不太好用。在映射和虚拟目录中环节比较多,一种出错,整个都出错。而且控制比较麻烦,需要制度相配合。另外,对于映射有时重新启动会断开,那么还需要用批处理在开机时,自动加上映射。
3) 使用FTP上传下载方式
将前置机的传输目录设置成FTP目录,在程序中通过FTP客户端组件来下载文件。
使用ftp client class来制定下载方法。在页面使用时调用:
FTP Client 操作
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net;
using System.IO;
using System.Text;
/// <summary>
/// FTP_Client
/// </summary>
public class FTP_Client
{
string ftpServerIP;
string ftpRemotePath;
string ftpUserID;
string ftpPassword;
string ftpURI;
public FTP_Client(string FtpServerIP, string FtpRemotePath, string FtpUserID, string FtpPassword)
{
ftpServerIP = FtpServerIP;
ftpRemotePath = FtpRemotePath;
ftpUserID = FtpUserID;
ftpPassword = FtpPassword;
ftpURI = "ftp://" + ftpServerIP + "/" + ftpRemotePath + "/";
}
public void Download(string filePath, string fileName)
{
FtpWebRequest reqFTP;
try
{
//filePath = <<The full path where the
//file is to be created. the>>,
//fileName = <<Name of the file to be createdNeed not
//name on FTP server. name name()>>
FileStream outputStream = new FileStream(filePath +
"\\" + fileName, FileMode.Create);
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" +
ftpServerIP + "/" + fileName));
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
reqFTP.UseBinary = true;
reqFTP.Credentials = new NetworkCredential(ftpUserID,
ftpPassword);
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream ftpStream = response.GetResponseStream();
long cl = response.ContentLength;
int bufferSize = 2048;
int readCount;
byte[] buffer = new byte[bufferSize];
readCount = ftpStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpStream.Read(buffer, 0, bufferSize);
}
ftpStream.Close();
outputStream.Close();
response.Close();
}
catch (Exception ex)
{
//MessageBox.Show(ex.Message);
}
}
}
在使用时,引用命名空间后调用:
//下载调用,将文件从ftp上下载到虚拟目录的Download中
FTP_Client ftp = new FTP_Client("125.15.135.15", "SERVER", "china", "china");
ftp.Download(Server.MapPath("Download"), "200903Test.xls");
在操作中需要注意的:
如果调用时报错:基础连接已经关闭;接收时发生错误,解决方法:去掉FTP服务器中的中文欢迎词或改成英文欢迎词就不会发生错误,这是微软的一个BUG。
4) 通过WCF来访问文件