|
参考资料(1)Apache FTPClient JAR的下载地址:
http://www.apache.org/dist/commons/net/binaries/
(2)Apache FTPClient API的JavaDoc文档:
http://commons.apache.org/proper/commons-net/apidocs/
(3)本文参考笔者所写的《Java网络编程核心技术详解》,电子工业出版社出版。
以下范例先登录到FTP服务器,然后再创建目录,然后再上传文件
public boolean upLoadFile(File file, String path, String fileName) throws IOException {
boolean result = false;
FTPClient ftpClient = new FTPClient();
try {
ftpClient.connect("www.myftp.com",21); //指定FTP的IP地址或域名,以及端口
ftpClient.login("username", "password"); //指定登录FTP服务器的用户名和口令
ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
// 创建多级目录
if (path != null && !"".equals(path.trim())) {
String[] pathes = path.split("/");
for (String onepath : pathes) {
if (onepath == null || "".equals(onepath.trim())) {
continue;
}
onepath=new String(onepath.getBytes("GBK"),"iso-8859-1");
if (!ftpClient.changeWorkingDirectory(onepath)) {
ftpClient.makeDirectory(onepath); //创建目录
ftpClient.changeWorkingDirectory(onepath); //转到当前工作目录
}
}
}
//在当前工作目录中上传文件
result = ftpClient.storeFile(new String(fileName.getBytes("GBK"),"iso-8859-1"), new FileInputStream(file));
} catch (Exception e) {
e.printStackTrace();
} finally {
ftpClient.logout();
}
return result;
} |
在以上代码中,还处理了中文目录出现乱码的问题:
使用org.apache.commons.net.ftp.FTPClient创建中文目录、上传中文文件名时,目录名及文件名中的中文显示为“??”。
原因:FTP协议里面,规定文件名编码为iso-8859-1,所以目录名或文件名需要转码。
解决方案:
1.将中文的目录或文件名转为iso-8859-1编码的字符。参考代码:
String name="目录名或文件名";
name=new String(name.getBytes("GBK"),"iso-8859-1");// 转换后的目录名或文件名。 |
2.设置linux环境变量
export LC_ALL="zh_CN.GBK"
export LANG="zh_CN.GBK"
作者:孙卫琴
程序猿的技术大观园:www.javathinker.net
[这个贴子最后由 admin 在 2021-10-09 11:00:17 重新编辑]
|
|