首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java连接ftp下传

2012-12-24 
java连接ftp上传/** * 利用ftp把handlepath路径里面的文件都上传上去,上传完后删除掉。 * @param handlePat

java连接ftp上传
/**
* 利用ftp把handlepath路径里面的文件都上传上去,上传完后删除掉。
* @param handlePath
*/
private void ftpUpload(String handlePath) {
FTPClient ftp = new FTPClient();
try {
/*Properties properties = new Properties();
properties.load(CpsUploadFileAction.class.getClassLoader().getResourceAsStream("/config/ftpconfig.properties"));*/
Properties properties = FtpConfigUtil.getInstance().getFtpConfigProp();
ftp.connect(properties.getProperty(FtpConfigUtil.FTPSERVERIP), Integer.parseInt(properties.getProperty(FtpConfigUtil.FTPSERVERPORT)));//连接ftp
ftp.login(properties.getProperty(FtpConfigUtil.USERNAME), properties.getProperty(FtpConfigUtil.PASSWORD));//登录ftp
ftp.makeDirectory(properties.getProperty(FtpConfigUtil.PATHNAME));//创建目录;
ftp.changeWorkingDirectory(properties.getProperty(FtpConfigUtil.PATHNAME));
File f = new File(handlePath);
File loadFiles[] = f.listFiles();
//把文件传送到服务器上;
for(int i=0;i<loadFiles.length;i++) {
File loadFile = loadFiles[i];
if(loadFile.isDirectory()) {
continue;
}
if(loadFile.isFile()) {
InputStream in = new FileInputStream(loadFile);
ftp.storeFile(loadFile.getName(), in);
in.close();
}

}
ftp.logout();//退出连接
} catch(IOException ioe) {
ioe.printStackTrace();
throw new RuntimeException(ioe.getMessage(),ioe);
} finally {
if(ftp.isConnected()) {
try {
ftp.disconnect();//关闭连接
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e.getMessage(),e);
}
}
}
//删除handlePath底下的文件;
File f = new File(handlePath);
File loadFiles[] = f.listFiles();
for(int i=0;i<loadFiles.length;i++) {
File tempF = loadFiles[i];
if(tempF.isDirectory()) {
continue;
}
if(tempF.isFile()) {
tempF.delete();
}

}
}

热点排行