- 浏览: 3420841 次
- 性别:
- 来自: 珠海
文章分类
- 全部博客 (1633)
- Java (250)
- Android&HTML5 (111)
- Struts (10)
- Spring (236)
- Hibernate&MyBatis (115)
- SSH (49)
- jQuery插件收集 (55)
- Javascript (145)
- PHP (77)
- REST&WebService (18)
- BIRT (27)
- .NET (7)
- Database (105)
- 设计模式 (16)
- 自动化和测试 (19)
- Maven&Ant (43)
- 工作流 (36)
- 开源应用 (156)
- 其他 (16)
- 前台&美工 (119)
- 工作积累 (0)
- OS&Docker (83)
- Python&爬虫 (28)
- 工具软件 (157)
- 问题收集 (61)
- OFbiz (6)
- noSQL (12)
最新评论
-
HEZR曾嶸:
你好博主,这个不是很理解,能解释一下嘛//左边+1,上边+1, ...
java 两字符串相似度计算算法 -
天使建站:
写得不错,可以看这里,和这里的这篇文章一起看,有 ...
jquery 遍历对象、数组、集合 -
xue88ming:
很有用,谢谢
@PathVariable映射出现错误: Name for argument type -
jnjeC:
厉害,困扰了我很久
MyBatis排序时使用order by 动态参数时需要注意,用$而不是# -
TopLongMan:
非常好,很实用啊。。
PostgreSQL递归查询实现树状结构查询
两种方式
1.使用共享网络磁盘的形式,在当前的服务器简历一个另一台服务器的网络磁盘,直接操作读写这个网络磁盘即可
2.使用FTP操作另外这台服务器
帖子1:java上传图片到另一台服务器上,如何解决?
http://bbs.csdn.net/topics/370033090?page=1#post-394318586
使用org.apache.commons.net.ftp包开发FTP客户端,实现进度汇报,实现断点续传,中文支持
利用org.apache.commons.net.ftp包实现一个简单的ftp客户端实用类。主要实现一下功能
1.支持上传下载。支持断点续传
2.支持进度汇报
3.支持对于中文目录及中文文件创建的支持。
http://zhangnet1.iteye.com/blog/907109
两个工具:
1. 有人介绍用jcifs-1.1.11.jar,这个可以在远程服务器上创建文件夹
2. apache的ftp工具
3. java.net支持
通过jcifs实现java访问网络共享文件
在Microsoft 网 络 系 统 中,SMB(Server Message Block,服务信息块)协议是WindowsforWorkgroup(WfWg)、Windows95、WindowsNT和LanManager用来实现共享局域网上文件和打印机的协议。对于利用Linux和WindowsNT构建的局域网来说,Samba就是为Linux提供的SMB客户程序/服务器程序的软件包,其功能是实现Windows 和Linux互相共享对方的磁盘空间和打印机。通用网络文件系统简称CIFS,它事实上是windows平台文件共享的标准协议,它是windows explorer,网络邻居和映射网络驱动器的底层实现协议。JAVA具有天然的平台无关性,使用JAVA可以访问任何类型的服务器或客户机上的共享文件系统,并且编写的软件产品可以运行于任何平台,因此用JAVA访问共享文件系统在企业应用中具有得天独厚的优势。
jcifs是CIFS在JAVA中的一个实现,是samba组织负责维护开发的一个开源项目,专注于使用java语言对cifs协议的设计和实现。他们将jcifs设计成为一个完整的,丰富的,具有可扩展能力且线程安全的客户端库。这一库可以应用于各种java虚拟机访问遵循CIFS/SMB网络传输协议的网络资源。类似于java.io.File的接口形式,在多线程的工作方式下被证明是有效而容易使用的。
jcifs的开发方法类似java的文件操作功能,它的资源url定位:smb://{user}:{password}@{host}/{path},smb为协议名,user和password分别为共享文件机子的登陆名和密码,@后面是要访问的资源的主机名或IP地址。最后是资源的共享文件夹名称和共享资源名。例如 smb://administrator:122122@192.168.0.22/test/response.txt。
在JAVA程序中,使用如下方式获得一个远程共享文件的句柄:SmbFile file = new SmbFile("smb://guest:1234@192.168.3.56/share/a.txt");这里的句柄不仅限于远程的共享文件,还可能是共享文件夹。isFile()方法和isDirectory()用来判断这个句柄对应的资源的真实属性。如果是共享文件夹,通过调用它的list()方法将获得其中资源的列表。List方法支持过滤器机制,有两种过滤器可供使用,一种是SmbFileFilter,另一种是SmbFilenameFilter,这两个在jcifs中作为接口出现,你可以根据自己的需要派生出个性化的过滤器,实现接口中的accept方法,以满足不同业务的需求。
SmbFileInputStream是smb文件的输入流,它的功能是以流的方式打开一个SmbFile:SmbFileInputStream in = new SmbFileInputStream(file);SmbFileInputStream提供read方法,你可以从这个流中读出远程文件全部的内容。
SmbFileInputStream,SmbFileOutputStream,SmbFile这里对应着io里的FileInputStream
FileOutputStream,File,如果对io比较熟悉那么jcifs比较容易应用
下面一个最简单的例子说明jcifs的用法
smb://guest:1234@192.168.3.56/share/a.txt
这个url的开始部分smb:// 说明了这是一个smb类型的url;接下来的guest和1234分别是访问共享资源的用户名称和密码;@后面是要访问的资源的主机名或IP地址。最后是资源的共享文件夹名称和共享资源名。
Commons Net, 这个包还是很实用的,封装了很多网络协议。
要设定二进制方式,否在一些文件不完整。
如果使用InputStream读取字节流,不能一次读写完, 要分次读取
例子1: 基于Apache Common-net Ftp实例 http://www.iteye.com/topic/1118804
例子2: 利用commons-net包实现ftp上传下载例子 http://sosuny.iteye.com/blog/888884
下载文件的时候注意一下,第一个参数要用iso-8859_1编码的,否则文件大小等于0!
直接贴图代码了:
java apache.commons.net ftp 上传下载移动删除 http://www.yanjoy.com/node/39
java.net支持: Java读取远程文件[Http,ftp],并保存
1.使用共享网络磁盘的形式,在当前的服务器简历一个另一台服务器的网络磁盘,直接操作读写这个网络磁盘即可
2.使用FTP操作另外这台服务器
帖子1:java上传图片到另一台服务器上,如何解决?
http://bbs.csdn.net/topics/370033090?page=1#post-394318586
使用org.apache.commons.net.ftp包开发FTP客户端,实现进度汇报,实现断点续传,中文支持
利用org.apache.commons.net.ftp包实现一个简单的ftp客户端实用类。主要实现一下功能
1.支持上传下载。支持断点续传
2.支持进度汇报
3.支持对于中文目录及中文文件创建的支持。
http://zhangnet1.iteye.com/blog/907109
两个工具:
1. 有人介绍用jcifs-1.1.11.jar,这个可以在远程服务器上创建文件夹
2. apache的ftp工具
3. java.net支持
通过jcifs实现java访问网络共享文件
在Microsoft 网 络 系 统 中,SMB(Server Message Block,服务信息块)协议是WindowsforWorkgroup(WfWg)、Windows95、WindowsNT和LanManager用来实现共享局域网上文件和打印机的协议。对于利用Linux和WindowsNT构建的局域网来说,Samba就是为Linux提供的SMB客户程序/服务器程序的软件包,其功能是实现Windows 和Linux互相共享对方的磁盘空间和打印机。通用网络文件系统简称CIFS,它事实上是windows平台文件共享的标准协议,它是windows explorer,网络邻居和映射网络驱动器的底层实现协议。JAVA具有天然的平台无关性,使用JAVA可以访问任何类型的服务器或客户机上的共享文件系统,并且编写的软件产品可以运行于任何平台,因此用JAVA访问共享文件系统在企业应用中具有得天独厚的优势。
jcifs是CIFS在JAVA中的一个实现,是samba组织负责维护开发的一个开源项目,专注于使用java语言对cifs协议的设计和实现。他们将jcifs设计成为一个完整的,丰富的,具有可扩展能力且线程安全的客户端库。这一库可以应用于各种java虚拟机访问遵循CIFS/SMB网络传输协议的网络资源。类似于java.io.File的接口形式,在多线程的工作方式下被证明是有效而容易使用的。
jcifs的开发方法类似java的文件操作功能,它的资源url定位:smb://{user}:{password}@{host}/{path},smb为协议名,user和password分别为共享文件机子的登陆名和密码,@后面是要访问的资源的主机名或IP地址。最后是资源的共享文件夹名称和共享资源名。例如 smb://administrator:122122@192.168.0.22/test/response.txt。
在JAVA程序中,使用如下方式获得一个远程共享文件的句柄:SmbFile file = new SmbFile("smb://guest:1234@192.168.3.56/share/a.txt");这里的句柄不仅限于远程的共享文件,还可能是共享文件夹。isFile()方法和isDirectory()用来判断这个句柄对应的资源的真实属性。如果是共享文件夹,通过调用它的list()方法将获得其中资源的列表。List方法支持过滤器机制,有两种过滤器可供使用,一种是SmbFileFilter,另一种是SmbFilenameFilter,这两个在jcifs中作为接口出现,你可以根据自己的需要派生出个性化的过滤器,实现接口中的accept方法,以满足不同业务的需求。
SmbFileInputStream是smb文件的输入流,它的功能是以流的方式打开一个SmbFile:SmbFileInputStream in = new SmbFileInputStream(file);SmbFileInputStream提供read方法,你可以从这个流中读出远程文件全部的内容。
SmbFileInputStream,SmbFileOutputStream,SmbFile这里对应着io里的FileInputStream
FileOutputStream,File,如果对io比较熟悉那么jcifs比较容易应用
下面一个最简单的例子说明jcifs的用法
import jcifs.smb.SmbFileInputStream; import jcifs.smb.SmbFile; public class ReadShareFile { public static void main(String[] args) { try{ SmbFile smbFile=new SmbFile("smb://test:test@10.218.100.12/share2/aa.txt"); //通过 smbFile.isDirectory();isFile()可以判断smbFile是文件还是文件夹 int length=smbFile.getContentLength();//得到文件的大小 byte buffer[] = new byte[length] ; SmbFileInputStream in = new SmbFileInputStream(smbFile) ; //建立smb文件输入流 while((in.read(buffer)) != -1){ System.out.write(buffer); System.out.println(buffer.length); } in.close(); }catch(Exception e){ e.printStackTrace(); }
smb://guest:1234@192.168.3.56/share/a.txt
这个url的开始部分smb:// 说明了这是一个smb类型的url;接下来的guest和1234分别是访问共享资源的用户名称和密码;@后面是要访问的资源的主机名或IP地址。最后是资源的共享文件夹名称和共享资源名。
Commons Net, 这个包还是很实用的,封装了很多网络协议。
要设定二进制方式,否在一些文件不完整。
//设置被动模式 ftpClient.enterLocalPassiveMode(); //设置以二进制方式传输 ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
如果使用InputStream读取字节流,不能一次读写完, 要分次读取
InputStream in =ftpClient.retrieveFileStream(new String(downLoadFileName.getBytes("UTF-8"), "UTF-8")); //int size=in.available(); Long t = ftpFile.getSize(); int size=t.intValue(); byte[] buffer = new byte[t.intValue()]; byte[] tmp = new byte[1024]; int length = -1; int count=0; while ((length=in.read(tmp))!= -1) { System.arraycopy(tmp, 0, buffer, count, length); count=count+length; } is.write(buffer); in.close(); is.close();
例子1: 基于Apache Common-net Ftp实例 http://www.iteye.com/topic/1118804
package com.shine.Ftp.util; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPClientConfig; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.net.ftp.FTPListParseEngine; import org.apache.commons.net.ftp.FTPReply; public class FTPUtil { private FTPClient ftp = null; /** * Ftp服务器 */ private String server; /** * 用户名 */ private String uname; /** * 密码 */ private String password; /** * 连接端口,默认21 */ private int port = 21; public FTPUtil() { } /** * 连接FTP服务器 * * @param server * @param uname * @param password * @return * @throws Exception */ public FTPClient connectFTPServer(String server, int port, String uname, String password) throws Exception { //初始化并保存信息 this.server = server ; this.port = port ; this.uname = uname ; this.password = password ; ftp = new FTPClient(); try { ftp.configure(getFTPClientConfig()); ftp.connect(this.server, this.port); ftp.login(this.uname, this.password); // 文件类型,默认是ASCII ftp.setFileType(FTPClient.BINARY_FILE_TYPE); // 设置被动模式 ftp.enterLocalPassiveMode(); ftp.setConnectTimeout(2000); ftp.setControlEncoding("GBK"); // 响应信息 int replyCode = ftp.getReplyCode(); if ((!FTPReply.isPositiveCompletion(replyCode))) { // 关闭Ftp连接 closeFTPClient(); // 释放空间 ftp = null; throw new Exception("登录FTP服务器失败,请检查![Server:" + server + "、" + "User:" + uname + "、" + "Password:" + password); } else { return ftp; } } catch (Exception e) { ftp.disconnect(); ftp = null; throw e; } } /** * 配置FTP连接参数 * * @return * @throws Exception */ public FTPClientConfig getFTPClientConfig() throws Exception { String systemKey = FTPClientConfig.SYST_NT; String serverLanguageCode = "zh"; FTPClientConfig conf = new FTPClientConfig(systemKey); conf.setServerLanguageCode(serverLanguageCode); conf.setDefaultDateFormatStr("yyyy-MM-dd"); return conf; } /** * 上传文件到FTP根目录 * * @param localFile * @param newName * @throws Exception */ public void uploadFile(String localFile, String newName) throws Exception { InputStream input = null; try { File file = null; if (checkFileExist(localFile)) { file = new File(localFile); } input = new FileInputStream(file); boolean result = ftp.storeFile(newName, input); if (!result) { throw new Exception("文件上传失败!"); } } catch (Exception e) { throw e; } finally { if (input != null) { input.close(); } } } /** * 上传文件到FTP根目录 * * @param input * @param newName * @throws Exception */ public void uploadFile(InputStream input, String newName) throws Exception { try { boolean result = ftp.storeFile(newName, input); if (!result) { throw new Exception("文件上传失败!"); } } catch (Exception e) { throw e; } finally { if (input != null) { input.close(); } } } /** * 上传文件到指定的FTP路径下 * * @param localFile * @param newName * @param remoteFoldPath * @throws Exception */ public void uploadFile(String localFile, String newName, String remoteFoldPath) throws Exception { InputStream input = null; try { File file = null; if (checkFileExist(localFile)) { file = new File(localFile); } input = new FileInputStream(file); // 改变当前路径到指定路径 this.changeDirectory(remoteFoldPath); boolean result = ftp.storeFile(newName, input); if (!result) { throw new Exception("文件上传失败!"); } } catch (Exception e) { throw e; } finally { if (input != null) { input.close(); } } } /** * 上传文件到指定的FTP路径下 * * @param input * @param newName * @param remoteFoldPath * @throws Exception */ public void uploadFile(InputStream input, String newName, String remoteFoldPath) throws Exception { try { // 改变当前路径到指定路径 this.changeDirectory(remoteFoldPath); boolean result = ftp.storeFile(newName, input); if (!result) { throw new Exception("文件上传失败!"); } } catch (Exception e) { throw e; } finally { if (input != null) { input.close(); } } } /** * 从FTP指定的路径下载文件 * * @param remotePath * @param localPath */ public void downloadFile(String remotePath, String localPath) throws Exception { OutputStream output = null; try { File file = null; if (checkFileExist(localPath)) { file = new File(localPath); } output = new FileOutputStream(file); boolean result = ftp.retrieveFile(remotePath, output); if (!result) { throw new Exception("文件下载失败!"); } } catch (Exception e) { throw e; } finally { if (output != null) { output.close(); } } } /** * 从FTP指定的路径下载文件 * * @param remoteFilePath * @return * @throws Exception */ public InputStream downFile(String remoteFilePath) throws Exception { return ftp.retrieveFileStream(remoteFilePath); } /** * 获取FTP服务器上指定路径下的文件列表 * * @param filePath * @return */ public List<String> getFtpServerFileList(String filePath) throws Exception { List<String> nlist = new ArrayList<String>(); FTPListParseEngine engine = ftp.initiateListParsing(filePath); List<FTPFile> ftpfiles = Arrays.asList(engine.getNext(25)); return getFTPServerFileList(nlist,ftpfiles); } /** * 获取FTP服务器上指定路径下的文件列表 * @param path * @return * @throws Exception */ public List<String> getFileList(String path) throws Exception { List<String> nlist = new ArrayList<String>(); List<FTPFile> ftpfiles = Arrays.asList(ftp.listFiles(path)); return getFTPServerFileList(nlist,ftpfiles); } /** * 列出FTP服务器文件列表信息 * @param nlist * @param ftpFiles * @return */ public List<String> getFTPServerFileList(List<String> nlist,List<FTPFile> ftpFiles){ if(ftpFiles==null || ftpFiles.size()==0) return nlist; for (FTPFile ftpFile : ftpFiles) { if (ftpFile.isFile()) { nlist.add(ftpFile.getName()); } } return nlist; } /** * 改变工作目录,如失败则创建文件夹 * * @param remoteFoldPath */ public void changeDirectory(String remoteFoldPath) throws Exception { if (remoteFoldPath != null) { boolean flag = ftp.changeWorkingDirectory(remoteFoldPath); if (!flag) { ftp.makeDirectory(remoteFoldPath); ftp.changeWorkingDirectory(remoteFoldPath); } } } /** * 检查文件是否存在 * * @param filePath * @return * @throws Exception */ public boolean checkFileExist(String filePath) throws Exception { boolean flag = false; File file = new File(filePath); if (!file.exists()) { throw new Exception("文件不存在,请检查!"); } else { flag = true; } return flag; } /** * 获取文件名,不包括后缀 * * @param filePath * @return */ public String getFileNamePrefix(String filePath) throws Exception { boolean flag = this.checkFileExist(filePath); if (flag) { File file = new File(filePath); String fileName = file.getName(); String _fileName = fileName.substring(0, fileName.lastIndexOf(".")); return _fileName; } return null; } /** * 关闭FTP连接 * * @param ftp * @throws Exception */ public void closeFTPClient(FTPClient ftp) throws Exception { try { if (ftp.isConnected()) ftp.disconnect(); } catch (Exception e) { throw new Exception("关闭FTP服务出错!"); } } /** * 关闭FTP连接 * * @throws Exception */ public void closeFTPClient() throws Exception { this.closeFTPClient(this.ftp); } /** * Get Attribute Method * */ public FTPClient getFtp() { return ftp; } public String getServer() { return server; } public String getUname() { return uname; } public String getPassword() { return password; } public int getPort() { return port; } /** * Set Attribute Method * */ public void setFtp(FTPClient ftp) { this.ftp = ftp; } public void setServer(String server) { this.server = server; } public void setUname(String uname) { this.uname = uname; } public void setPassword(String password) { this.password = password; } public void setPort(int port) { this.port = port; } /** * 主方法(测试) * * @param args */ public static void main(String[] args) { try { FTPUtil fu = new FTPUtil(); fu.connectFTPServer("192.168.11.28", 21, "Ftpuser", "sunshine"); } catch (Exception e) { System.out.println("异常信息:" + e.getMessage()); } } }
例子2: 利用commons-net包实现ftp上传下载例子 http://sosuny.iteye.com/blog/888884
下载文件的时候注意一下,第一个参数要用iso-8859_1编码的,否则文件大小等于0!
直接贴图代码了:
package ftp2; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.net.SocketException; import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPClientConfig; import org.apache.commons.net.ftp.FTPFile; import org.apache.commons.net.ftp.FTPReply; /** * 使用commons的net包进行ftp链接. 相关包:commons-net-1.4.1.jar ; * commons-io-1.2.jar;jakarta-oro-2.0.8.jar测试通过.可以列出ftp上的文件 * 通过把ftp服务器上的文件流连接到outSteam及可以把文件下载到本机的目录..限制如果目录为中文则需要处理.最好使用英文文件名 * */ public class ListFtpFile { private FTPClient ftpClient = new FTPClient(); private OutputStream outSteam = null; /** * ftp服务器地址 */ private String hostName = "192.168.0.2"; private int port = 212; /** * 登录名 */ private String userName = "anonymous";//匿名登录 /** * 登录密码 */ private String password = "121@hotmail.com";//随便一个地址 /** * 需要访问的远程目录 */ private String remoteDir = "/software/dreamweaver/"; /** * 下载 */ private void download() { try { // 链接到ftp服务器 ftpClient.connect(hostName,port); System.out.println("连接到ftp服务器:" + hostName + " 成功..开始登录"); // 登录.用户名 密码 boolean b = ftpClient.login(userName, password); System.out.println("登录成功." + b); // 检测连接是否成功 int reply = ftpClient.getReplyCode(); if(!FTPReply.isPositiveCompletion(reply)) { ftpClient.disconnect(); System.err.println("FTP server refused connection."); System.exit(1); } ftpClient.setControlEncoding("GBK"); FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_NT); conf.setServerLanguageCode("zh"); FTPFile[] remoteFiles = ftpClient.listFiles(remoteDir); if (remoteFiles != null) { for (int i = 0; i < remoteFiles.length; i++) { String name = remoteFiles[i].getName(); //下载 File localFile = new File("c:/001/ftp/" + name); OutputStream is = new FileOutputStream(localFile); //retrieveFile的第一个参数需要是 ISO-8859-1 编码,并且必须是完整路径! String fileName = remoteDir + name; ftpClient.retrieveFile(new String(fileName.getBytes("GBK"),"ISO-8859-1"), is); is.close(); //打印 long length = remoteFiles[i].getSize(); String readableLength = FileUtils.byteCountToDisplaySize(length); System.out.println(name + ":\t"+remoteFiles[i].isFile()+"\t" + readableLength); } } ftpClient.logout(); } catch (Exception e) { e.printStackTrace(); } finally { IOUtils.closeQuietly(outSteam); try { ftpClient.disconnect(); } catch (IOException ioe) { ioe.printStackTrace(); } } } /** * 上传 * */ public void upload(){ String srcUrl = "C:/001/菜单权限设计.doc"; String targetFileName = "菜单权限设计.doc"; try { ftpClient.connect(hostName,port); boolean b = ftpClient.login(userName, password); // 检测连接是否成功 int reply = ftpClient.getReplyCode(); if (!FTPReply.isPositiveCompletion(reply)) { ftpClient.disconnect(); System.err.println("FTP server refused connection."); System.exit(1); } ftpClient.setControlEncoding("GBK"); FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_NT); conf.setServerLanguageCode("zh"); File srcFile = new File(srcUrl); FileInputStream fis = null; fis = new FileInputStream(srcFile); // 设置上传目录 ftpClient.changeWorkingDirectory(remoteDir); ftpClient.setBufferSize(1024); ftpClient.setControlEncoding("GBK"); // 设置文件类型(二进制) ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE); // 上传 b = ftpClient.storeFile(targetFileName, fis); IOUtils.closeQuietly(fis); /*boolean bool = ftpClient.changeWorkingDirectory("/NC"); System.out.println("changeWorkingDirectory="+bool); bool = ftpClient.makeDirectory("/NC"); System.out.println("makeDirectory="+bool);*/ ftpClient.logout(); } catch (SocketException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }finally{ try { ftpClient.disconnect(); } catch (IOException e) { e.printStackTrace(); } } } /** * 测试 * */ public static void main(String[] args) { ListFtpFile listFtpfiles = new ListFtpFile(); listFtpfiles.download(); listFtpfiles.upload(); } }
java apache.commons.net ftp 上传下载移动删除 http://www.yanjoy.com/node/39
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.SocketException; import java.util.TimeZone; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPClientConfig; import org.apache.commons.net.ftp.FTPReply; /** * @spring.bean id="apachecommonsnetftp" * @author lhb http://www.yanjoy.com * */ public class FTPCommon implements FTPInterface { private Log log = LogFactory.getLog(this.getClass()); private FTPClient ftpClient; private String username; private String password; private String url; private int port; public FTPCommon() { super(); // 从配置文件中读取初始化信息 this.ftpClient = new FTPClient(); } /** * 连接并登录FTP服务器 * */ public boolean ftpLogin() { this.ftpClient = new FTPClient(); boolean isLogin = false; FTPClientConfig ftpClientConfig = new FTPClientConfig( FTPClientConfig.SYST_NT); ftpClientConfig.setServerTimeZoneId(TimeZone.getDefault().getID()); this.ftpClient.setControlEncoding("UTF-8"); this.ftpClient.configure(ftpClientConfig); try { if (this.port> 0) { this.ftpClient.connect(this.url, this.port); } else { this.ftpClient.connect(this.url); } // FTP服务器连接回答 int reply = this.ftpClient.getReplyCode(); if (!FTPReply.isPositiveCompletion(reply)) { this.ftpClient.disconnect(); return isLogin; } if(!this.ftpClient.login(this.username, this.password)){ return isLogin; } //this.ftpClient.changeWorkingDirectory(this.ftpEntity.getRemoteDir()); this.ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE); // log.infoOutPut("成功登陆FTP服务器:" + this.ftpEntity.getUrl() + " 端口号:" // + this.getFtpModel().getPort() + " 目录:" // + this.ftpEntity.getRemoteDir()); isLogin = true; } catch (SocketException e) { e.printStackTrace(); // log.logPrint("连接FTP服务失败!", Constants.LOG_EXCEPTION); // log.logPrint(e.getMessage(), Constants.LOG_EXCEPTION); } catch (IOException e) { e.printStackTrace(); // log.logPrint("登录FTP服务失败!", Constants.LOG_EXCEPTION); // log.logPrint(e.getMessage(), Constants.LOG_EXCEPTION); } System.out.println(this.ftpClient.getBufferSize()); this.ftpClient.setBufferSize(1024 * 2); this.ftpClient.setDataTimeout(2000); return isLogin; } /** * 退出并关闭FTP连接 * */ public void close() { if (null != this.ftpClient && this.ftpClient.isConnected()) { try { boolean reuslt = this.ftpClient.logout();// 退出FTP服务器 if (reuslt) { // log.info("退出并关闭FTP服务器的连接"); } } catch (IOException e) { e.printStackTrace(); log.error("退出FTP服务器异常!"); log.error(e.getMessage()); } finally { try { this.ftpClient.disconnect();// 关闭FTP服务器的连接 } catch (IOException e) { e.printStackTrace(); log.error("关闭FTP服务器的连接异常!"); log.error(e.getMessage()); } } } } /** * 检查FTP服务器是否关闭,如果关闭接则连接登录FTP * * @return */ public boolean isOpenFTPConnection() { boolean isOpen = false; if (null == this.ftpClient) { return false; } try { // 没有连接 if (!this.ftpClient.isConnected()) { isOpen = this.ftpLogin(); } } catch (Exception e) { e.printStackTrace(); log.error("FTP服务器连接登录异常!"); log.error(e.getMessage()); isOpen = false; } return isOpen; } /** * 设置传输文件的类型[文本文件或者二进制文件] * * @param fileType--FTPClient.BINARY_FILE_TYPE,FTPClient.ASCII_FILE_TYPE */ public void setFileType(int fileType) { try { this.ftpClient.setFileType(fileType); } catch (IOException e) { e.printStackTrace(); // log.exception("设置传输文件的类型异常!"); // log.exception(e.getMessage()); } } /** * 下载文件 * * @param localFilePath * 本地文件名及路径 * @param remoteFileName * 远程文件名称 * @return */ public boolean downloadFile(String localFilePath, String remoteFileName) { BufferedOutputStream outStream = null; boolean success = false; try { outStream = new BufferedOutputStream(new FileOutputStream( localFilePath)); success = this.ftpClient.retrieveFile(remoteFileName, outStream); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (outStream != null) { try { outStream.flush(); outStream.close(); } catch (IOException e) { e.printStackTrace(); } } } return success; } /** * 下载文件 * * @param localFilePath * 本地文件 * @param remoteFileName * 远程文件名称 * @return */ public boolean downloadFile(File localFile, String remoteFileName) { BufferedOutputStream outStream = null; FileOutputStream outStr = null; InputStream inStream = null; boolean success = false; try { outStr = new FileOutputStream(localFile); outStream = new BufferedOutputStream(outStr); //success = this.ftpClient.retrieveFile(remoteFileName, outStream); inStream = this.ftpClient.retrieveFileStream(remoteFileName); byte[] bytes = new byte[1024]; int c; while ((c = inStream.read(bytes)) != -1) { outStr.write(bytes, 0, c); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (null != outStream) { try { outStream.flush(); outStream.close(); } catch (IOException e) { e.printStackTrace(); } } if(null != inStream){ inStream.close(); } } catch (Exception e) { e.printStackTrace(); } finally { try { if (null != outStr) { outStr.flush(); outStr.close(); } if(null != inStream){ inStream.close(); } } catch (IOException e) { e.printStackTrace(); } } } return success; } /** * * @param outStream * @param remoteFileName * @return */ public OutputStream downloadFile(OutputStream outStream, String remoteFileName) { BufferedOutputStream bufferOutStream = null; boolean success = false; try { bufferOutStream = new BufferedOutputStream(outStream); success = this.ftpClient.retrieveFile(remoteFileName, bufferOutStream); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return bufferOutStream; } /** * 上传文件 * * @param localFilePath * 本地文件路径及名称 * @param remoteFileName * FTP 服务器文件名称 * @return */ public boolean uploadFile(String localFilePath, String remoteFileName) { BufferedInputStream inStream = null; OutputStream osStrem = null; boolean success = false; try { inStream = new BufferedInputStream(new FileInputStream( localFilePath)); osStrem = this.ftpClient.storeFileStream(remoteFileName); byte[] bytes = new byte[1024]; int c; while ((c = inStream.read(bytes)) != -1) { osStrem.write(bytes, 0, c); } success = true; //success = this.ftpClient.storeFile(new String(remoteFileName.getBytes("UTF-8"), "ISO-8859-1"), inStream); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (inStream != null) { inStream.close(); } if(osStrem!=null){ osStrem.flush(); osStrem.close(); } } catch (IOException e) { e.printStackTrace(); } } return success; } /** * 上传文件 * * @param localFilePath * 本地文件 * @param remoteFileName * FTP 服务器文件名称 * @return */ public boolean uploadFile(File localFile, String remoteFileName) { BufferedInputStream inStream = null; boolean success = false; try { inStream = new BufferedInputStream(new FileInputStream(localFile)); success = this.ftpClient.storeFile(remoteFileName, inStream); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (inStream != null) { try { inStream.close(); } catch (IOException e) { e.printStackTrace(); } } } return success; } /** * 删除FTP服务器上文件 * @param remoteFileName * FTP 服务器文件名称 * @return */ public boolean delFile(String remoteFileName){ boolean success = false; try { success = this.ftpClient.deleteFile(remoteFileName); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 删除FTP服务器上文件夹中的所有文件 * @param remoteDir * @return */ public boolean delAllFile(String remoteDir){ boolean success = false; try { this.ftpClient.changeWorkingDirectory(remoteDir); String files[] = null; files = this.ftpClient.listNames(); if(files!=null){ for(int i=0;i<files.length;i++){ success = this.ftpClient.deleteFile(files[i]); } } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 删除FTP服务器上文件夹中的所有文件 * @param remoteDir * @return */ public boolean delAllFile(){ boolean success = false; try { String files[] = null; files = this.ftpClient.listNames(); if(files!=null){ for(int i=0;i<files.length;i++){ success = this.ftpClient.deleteFile(files[i]); } } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 删除目录 * @param pathname * @return */ public boolean deleteDirectory(String pathname){ boolean success = false; try { success = this.ftpClient.removeDirectory(pathname); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 移动文件或重命名 * @param fromFile * @param toFile * @return */ public boolean moveFile(String fromFile, String toFile) { boolean success = false; try { success = this.ftpClient.rename(fromFile, toFile); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 创建文件夹 * @param dir * @return */ public boolean makeDirectory(String dir){ boolean success = false; try { success = this.ftpClient.makeDirectory(dir); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return success; } /** * 变更工作目录 * * @param remoteDir--目录路径 */ public void changeDir(String remoteDir) { try { this.ftpClient.changeWorkingDirectory(remoteDir); // log.info("变更工作目录为:" + remoteDir); } catch (IOException e) { e.printStackTrace(); log.error("变更工作目录为:" + remoteDir + "时出错!"); log.error(e.getMessage()); } } /** * 变更工作目录 * * @param remoteDir--目录路径 */ public void changeDir(String[] remoteDirs) { String dir = ""; try { for (int i = 0; i < remoteDirs.length; i++) { this.ftpClient.changeWorkingDirectory(remoteDirs[i]); dir = dir + remoteDirs[i] + "/"; } // log.info("变更工作目录为:" + dir); } catch (IOException e) { e.printStackTrace(); log.error("变更工作目录为:" + dir + "时出错!"); log.error(e.getMessage()); } } /** * 返回上级目录 * */ public void toParentDir(String[] remoteDirs) { try { for (int i = 0; i < remoteDirs.length; i++) { this.ftpClient.changeToParentDirectory(); } // log.info("返回上级目录"); } catch (IOException e) { e.printStackTrace(); log.error("返回上级目录时出错!"); log.error(e.getMessage()); } } /** * 返回上级目录 * */ public void toParentDir() { try { this.ftpClient.changeToParentDirectory(); log.info("返回上级目录"); } catch (IOException e) { e.printStackTrace(); log.error("返回上级目录时出错!"); log.error(e.getMessage()); } } /** * 获得FTP 服务器下所有的文件名列表 * * @param regex * @return */ public String[] getListFiels() { String files[] = null; try { files = this.ftpClient.listNames(); } catch (IOException e) { e.printStackTrace(); } return files; } public FTPClient getFtpClient() { return ftpClient; } public void init(String server, int port, String userName, String userPassword) { // TODO Auto-generated method stub this.url = server; this.port =port; this.username = userName; this.password = userPassword; } }
java.net支持: Java读取远程文件[Http,ftp],并保存
import java.net.*; import java.io.*; /* * Created on 2007-6-1 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ /** * @author howard * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class TestUrl { public boolean saveUrlAs(String photoUrl, String fileName) { try { URL url = new URL(photoUrl); HttpURLConnection connection = (HttpURLConnection) url .openConnection(); DataInputStream in = new DataInputStream(connection .getInputStream()); DataOutputStream out = new DataOutputStream(new FileOutputStream( fileName)); byte[] buffer = new byte[4096]; int count = 0; while ((count = in.read(buffer)) > 0) { out.write(buffer, 0, count); } out.close(); in.close(); return true; } catch (Exception e) { System.out.println(e); return false; } } /** * 兼容HTTP和FTP协议 * @param urlString * @return */ public String getDocumentAt(String urlString) { StringBuffer document = new StringBuffer(); try { URL url = new URL(urlString); URLConnection conn = url.openConnection(); BufferedReader reader = new BufferedReader(new InputStreamReader( conn.getInputStream())); String line = null; while ((line = reader.readLine()) != null) { document.append(line + "\n"); } reader.close(); } catch (MalformedURLException e) { System.out.println("Unable to connect to URL: " + urlString); } catch (IOException e) { System.out.println("IOException when connecting to URL: " + urlString); } return document.toString(); } /** * * @param args */ public static void main(String[] args) { TestUrl test = new TestUrl(); String photoUrl = "http://www.zhplc.com/468x60.gif"; String fileName = photoUrl.substring(photoUrl.lastIndexOf("/")); String filePath = "c:\\"; boolean flag = test.saveUrlAs(photoUrl, filePath + fileName); System.out.println("Run ok!\n Get URL file " + flag); } }
发表评论
-
Java Comparable和Comparator
2016-06-26 08:52 694http://my.oschina.net/android52 ... -
Java集合框架之fastutil & koloboke
2016-06-23 14:04 2470Java集合框架之fastutil http://rensan ... -
ehcache 分布式支持
2016-06-05 22:26 1098原文 http://my.oschina.net/glenxu ... -
Intellij IDEA插件开发入门
2016-05-26 11:42 2882原文: http://blog.csdn.net/dc_726 ... -
阿里巴巴Druid数据源的配置与使用
2016-05-24 17:42 1542http://my.oschina.net/wjme/blog ... -
mysql中间件研究(Atlas,cobar,TDDL), 分库分表插件
2016-05-09 14:15 3441http://www.guokr.com/blog/47576 ... -
Java集合: Queue和Deque
2016-05-09 09:49 1861Queue http://my.oschina.net/kev ... -
使用gzip优化web应用(filter实现)
2016-05-07 01:45 1029使用gzip优化web应用(filter实现) http:// ... -
Byteman 3.0.5 发布,Java 字节码注入工具
2016-04-23 10:29 1768Byteman 3.0.5 发布,Java 字 ... -
RandomStringUtils的说明和生成随机汉字
2016-04-20 15:21 1387更多参考: http://my.oschina.net/wil ... -
通过IP地址获取地理位置
2016-04-20 15:19 894http://my.oschina.net/githubhty ... -
Java编程中使用正则表达式过滤非数字字符串
2016-04-14 13:51 1716/** * * @param str ... -
非对称加密DH算法,DH代码实现
2016-04-13 11:33 1355RSA算法原理(一)http:// ... -
企业支付宝账号开发接口教程
2016-03-31 14:52 1234企业支付宝账号开发接口教程--JAVA-UTF-8(实际操作- ... -
java double类型数据操作工具类
2016-03-28 17:36 1238http://my.oschina.net/yxwblog/b ... -
double转换到BigDecimal
2016-03-28 17:11 1543BigDecimal b = new BigDecimal(d ... -
Java 生成好看的验证码
2016-03-23 10:52 3357http://www.oschina.net/code/sni ... -
Linux环境安装配置Swftools
2016-03-22 21:01 1102http://tetop.blog.51cto.com/188 ... -
java压缩与解压缩文件
2016-03-20 22:03 1469http://www.oschina.net/code/sni ... -
java图像压缩
2016-03-19 23:20 951http://my.oschina.net/686991/bl ...
相关推荐
Java解析FTP服务器文本文件 Java解析FTP服务器文本文件是指使用Java语言连接FTP服务器,上传、下载、递归目录遍历等基本操作的集合。在这个过程中,我们需要引入相关的jar包,例如cpdetector.jar、jchardet-1.0.jar...
Java作为多用途且跨平台的编程语言,提供了多种库来实现FTP功能,使得开发者能够轻松地构建跨服务器文件上传和下载的应用。本篇将详细介绍如何使用Java实现FTP的文件上传与下载。 首先,我们需要了解Java中的FTP...
Java定时从FTP服务器更新相关文件是一项常见的任务,特别是在自动化数据同步和备份的场景中。这里主要涉及的技术点包括FTP协议、Java编程以及文件系统操作。本文将深入探讨这些知识点,并提供一个基于`ftp4j`库的...
FtpList部分是用来显示FTP服务器上的文件; GetButton部分为从FTP服务器下传一个文件; PutButton部分为向FTP服务器上传一个文件。 别忘了在程序中还要引入两个库文件(import sun.net.*,import sun.net.ftp.*)。 以下...
### Java FTP 指定下载文件和上传文件到指定的服务器目录 #### 一、概述 在本篇文章中,我们将详细介绍如何使用Java编程语言通过FTP(文件传输协议)实现文件的上传与下载功能,并能够将文件指定上传或下载到特定...
libcurl是一个开源、跨平台的库,它提供了在各种协议(包括FTP)下进行文件传输的功能。在C++中,我们可以利用libcurl的API来构建我们的FTP客户端。 1. **FTP遍历目录**: - **初始化libcurl**:首先,我们需要...
用java语言编写的ftp小工具,可以按指定时间监控ftp服务器,把服务器指定目录内新产生的文件或者文件夹下载到本地指定文件夹,下载后删除数据。 也可以监控本地文件夹,把文件夹内新产生的文件或者文件夹整体上传到...
在C++中实现FTP功能,可以帮助开发者实现在本地计算机与远程服务器之间的文件上传和下载。 FTPManager类是这个压缩包的核心,它封装了FTP协议的相关操作,使得在C++程序中使用FTP变得更加简单。FTPManager.cpp和...
JAVA中生成xml文件到指定路径和上传到ftp服务器到指定路径的方法。
在Java编程环境中,读取FTP(File Transfer Protocol)服务器上的文件是一项常见的任务,尤其是在Web服务器和Linux系统环境下。FTP提供了一种可靠的方式来传输文件,使得应用程序可以远程访问和操作存储在FTP服务器...
### 获取FTP服务器文件大小的知识点解析 在进行网络文件传输时,经常需要了解远程文件的大小,以便于更好地控制文件的下载进度或者进行其他相关的管理操作。本文将围绕“获取FTP服务器文件的大小”这一主题展开,...
总的来说,jcifs-1.3.16.jar是Java开发者在处理SMB协议时的重要工具,尤其对于需要在不同操作系统之间共享文件的应用,如企业内部的文件服务器、协同办公系统等,jcifs库提供了强大的支持。通过研究源码、查阅doc...
### Java实现FTP服务器的关键知识点 在探讨如何使用Java实现FTP(File Transfer Protocol)服务器之前,我们首先需要理解FTP的基本概念及其工作原理。FTP是一种用于在网络上进行文件传输的标准协议,它支持上传...
1. **Java FTP服务器框架**:Java中常见的FTP服务器实现框架有Apache MINA、Jserv和JSch等。这些框架提供了处理FTP连接、数据传输以及用户认证的基础架构。 2. **Java Socket编程**:FTP服务器的核心是基于TCP/IP的...
本文档将详细介绍一个基于Java的实用工具类`FtpClientUtil`,该类提供了一系列功能来与FTP服务器交互,包括连接到服务器、上传文件、下载文件、获取文件列表、删除文件和目录以及关闭连接等操作。 #### 二、`...
Java FTP服务器文件上传下载是Java开发中常见的网络编程任务,主要涉及到FTP(File Transfer Protocol)协议的应用,用于在客户端和服务器之间传输文件。本教程将详细讲解如何使用Java实现FTP服务器的文件上传、下载...
FTP服务器是一种用于在互联网上进行文件传输的服务,它允许用户从一台计算机(客户端)向另一台计算机(服务器)上传或下载文件。FTP(File Transfer Protocol)是这项服务的基础协议,它是一个标准网络协议,用于在...
本教程将详细介绍如何使用Java实现文件上传到FTP服务器,这适用于初学者熟悉FTP客户端编程的基础概念。 首先,我们要了解FTP的基本工作原理。FTP允许客户端连接到服务器,发送文件,接收文件,或者列出服务器上的...
在Java编程中,FTP(File Transfer Protocol)是一个用于在计算机之间传输文件的标准协议。通过FTP,我们可以实现文件的上传、下载以及删除等操作。这里,我们主要探讨如何使用Java实现这些功能,结合提供的源码,...