### /**
#### * 退出 FTP 服务器
#### * @throws Exception
#### */
### public void logout() throws Exception {
####### //用 ftpclient.closeServer()断开 FTP 出错时用下更语句退出
####### ftpclient.sendServer("QUIT\r\n");
####### int reply = ftpclient.readServerResponse(); //取得服务器的返回信息
### }
### /**
#### * 在 FTP 服务器上建立指定的目录,当目录已经存在的情下不会影响目录下的文件,这样
用以判断 FTP
#### * 上传文件时保证目录的存在目录格式必须以"/"根目录开头
#### * @param pathList String
#### * @throws Exception
#### */
### public void buildList(String pathList) throws Exception {
####### ftpclient.ascii();
####### StringTokenizer s = new StringTokenizer(pathList, "/"); //sign
####### int count = s.countTokens();
####### String pathName = "";
####### while (s.hasMoreElements()) {
########### pathName = pathName + "/" + (String) s.nextElement();
########### try {
############### ftpclient.sendServer("XMKD " + pathName + "\r\n");
########### } catch (Exception e) {
############### e = null;
########### }
########### int reply = ftpclient.readServerResponse();
评论0
最新资源