怎么从FTP上下载东西?
其实我建议使用一个专门的ftp客户端来使用ftp比较好,这样你只需要在客户端上输入ftp服务器的IP和端口,账号,密码,就能轻松的上传和下载文件,非常实用。
这里我推荐使用IIS7服务器管理工具,它可以作为FTP的客户端,想要进行FTP的上传下载操作,只需要下载安装iis7服务器管理工具就可以了!免费下载,很方便。
同时它还可以作为VNC的客户端,进行VNC的相应操作!它能够连接Windows和Linux系统下的服务器和VPS,能满足你不同系统的使用,感觉不错的话可以试试
/
根据文件输入流,和文件名称下载文件
@param resp HttpServletResponse
@param file 供下载的文件
@param file_name 所显示的下载文件名称
/
public void FileDownLoad(HttpServletResponse resp ,File file, String file_name) {
try {
String fileName = new String(file_namegetBytes("GBK"), "ISO8859_1");
respsetContentType("application;charset=utf-8"); // 指定文件的保存类型。
respsetHeader("Content-disposition", "attachment; filename="+ fileName);
ServletOutputStream oupstream = respgetOutputStream();
FileInputStream from = new FileInputStream(file);
byte[] buffer = new byte[catchSize];
int bytes_read;
while ((bytes_read = fromread(buffer)) != -1) {
oupstreamwrite(buffer, 0, bytes_read);
}
oupstreamflush();
} catch (Exception e) {
}
}
这个是服务器端文件下载工具类 题主可以试试,望采纳
怎么用mac命令行从linux服务器下载文件到本地?
用mac命令行从linux服务器下载文件到本地的方法:连接服务器-写入命令-输入密码-下载即可。
具体步骤:
一、给电脑连上网,然后得知道服务器的帐号和密码,可以用ssh连接上服务器。输入ssh 用户名@主机名 ,回车提示输入密码,回车出现“welcome……”字样,代表连接成功。
二、写命令“scp 用户名@主机名:要下载的文见路径 要保存的位置”,回车。
三、输入密码,输入后回车,看到下载进度为100%时,下载成功。
四、在保存的位置处可以看见下载下来的文件。
用copy命令,
将远程主机的文件复制到自己的电脑:copy
\\ip地址\c$\文件名\c:\
当然也可以把本地文件复制到远程主机:
copy
c:\文件名\\ip地址\c$
如果是ftp主机比如5944,可以在网页上直接登陆,打开ie输入
ftp://ftp分配给你的ip地址
回车后要在对话框里输入ftp分配的用户和密码
如果登陆成功,可以把浏览器的页面框缩小后以拖拽的方式把ftp上的文件拖到本地桌面。
具体在cmd命令下的ftp命令实在太多,这里就不用说了。
一在服务器上面安装FTP服务端比如说用SERV-U来搭建服务端然后在自己电脑上安装下flashfxp工具用来登录FTP下载文件到本地电脑即可支持断点续传很方便
二登录服务器在服务器上面登录百度网盘把你所要下载的东西打包上传到百度网盘然后在本地电脑登录网盘下载
三登录服务器在服务器上面登录你的邮箱把所需要下载的东西打包发送到你的另一个邮箱在本地电脑登录你的另一个邮箱把文件下载出来
C#从服务器下载文件可以使用下面4个方法:TransmitFile、WriteFile、WriteFile和流方式下载文件,并保存为相应类型,方法如下:
1、TransmitFile实现下载
protected void Button1_Click(object sender, EventArgs e){
/
微软为Response对象提供了一个新的方法TransmitFile来解决使用ResponseBinaryWrite
下载超过400mb的文件时导致Aspnet_wpexe进程回收而无法成功下载的问题。
代码如下:
/
ResponseContentType = "application/x-zip-compressed";
ResponseAddHeader("Content-Disposition", "attachment;filename=zzip");
string filename = ServerMapPath("DownLoad/zzip");
ResponseTransmitFile(filename);
}
2、WriteFile实现下载
protected void Button2_Click(object sender, EventArgs e){
/
using SystemIO;
/
string fileName = "asdtxt";//客户端保存的文件名
string filePath = ServerMapPath("DownLoad/aaatxt");//路径
FileInfo fileInfo = new FileInfo(filePath);
ResponseClear();
ResponseClearContent();
ResponseClearHeaders();
ResponseAddHeader("Content-Disposition", "attachment;filename=" + fileName);
ResponseAddHeader("Content-Length", fileInfoLengthToString());
ResponseAddHeader("Content-Transfer-Encoding", "binary");
ResponseContentType = "application/octet-stream";
ResponseContentEncoding = SystemTextEncodingGetEncoding("gb2312");
ResponseWriteFile(fileInfoFullName);
ResponseFlush();
ResponseEnd();
}
3、WriteFile分块下载
protected void Button3_Click(object sender, EventArgs e){
string fileName = "aaatxt";//客户端保存的文件名
string filePath = ServerMapPath("DownLoad/aaatxt");//路径
SystemIOFileInfo fileInfo = new SystemIOFileInfo(filePath);
if (fileInfoExists == true)
{
const long ChunkSize = 102400;//100K 每次读取文件,只读取100K,这样可以缓解服务器的压力
byte[] buffer = new byte[ChunkSize];
ResponseClear();
SystemIOFileStream iStream = SystemIOFileOpenRead(filePath);
long dataLengthToRead = iStreamLength;//获取下载的文件总大小
ResponseContentType = "application/octet-stream";
ResponseAddHeader("Content-Disposition", "attachment; filename=" + HttpUtilityUrlEncode(fileName));
while (dataLengthToRead > 0 && ResponseIsClientConnected)
{
int lengthRead = iStreamRead(buffer, 0, ConvertToInt32(ChunkSize));//读取的大小
ResponseOutputStreamWrite(buffer, 0, lengthRead);
ResponseFlush();
dataLengthToRead = dataLengthToRead - lengthRead;
}
ResponseClose();
}
}
4、流方式下载
protected void Button4_Click(object sender, EventArgs e){
string fileName = "aaatxt";//客户端保存的文件名
string filePath = ServerMapPath("DownLoad/aaatxt");//路径
//以字符流的形式下载文件
FileStream fs = new FileStream(filePath, FileModeOpen);
byte[] bytes = new byte[(int)fsLength];
fsRead(bytes, 0, bytesLength);
fsClose();
ResponseContentType = "application/octet-stream";
//通知浏览器下载文件而不是打开
ResponseAddHeader("Content-Disposition", "attachment; filename=" + HttpUtilityUrlEncode(fileName, SystemTextEncodingUTF8));
ResponseBinaryWrite(bytes);
ResponseFlush();
ResponseEnd();
}
0条评论