`
jiadong
  • 浏览: 30709 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

ftp client

 
阅读更多

import sun.net.ftp.*;
import sun.net.*;
import java.applet.*;
import java.io.*;
import java.io.IOException;
import java.util.StringTokenizer;
import sun.net.ftp.FtpClient;
import java.util.ArrayList;

public class ftp extends Applet
{
FtpClient aftp;
DataOutputStream outputs ;
TelnetInputStream ins;
TelnetOutputStream outs;

int ch;
public String a;
String hostname="";
private String path = "/";

public static void main(String[] args)
{
String hostname = "192.168.0.56";
int port = 2121;
String uid = "lee";
String pwd = "lee";
String RWFileDir = "D://smsftp//";//文件目录

//连接ftp服务器
ftp ft = new ftp();
ft.connect(RWFileDir,hostname,port,uid,pwd);

//下载文件
if (ft.aftp != null){
try {
ft.getNameList(RWFileDir);
}catch(IOException e)
{
System.out.println("下载文件出错:"+e);
}
}


//上传文件
if (ft.aftp != null){
String sdir = RWFileDir + "subunsubfromsp//";
File fdir = new File(sdir);
String FileName = "";

for(int i=0;i FileName = sdir + (fdir.list())[i];

ft.uploadFile(RWFileDir,FileName);
}
//System.out.println("成功上传的文件:");
//ft.showFileContents("subunsubfromsp//");
}

//删除subunsubfromsp目录下已经上传的文件文件
// ft.deleFile(RWFileDir);

//断开服务器连接
ft.stop(RWFileDir);

}

public FtpClient connect(String RWFileDir,String hostname,int port,String uid,String pwd)
{
this.hostname = hostname;
System.out.println("正在连接"+hostname+",请等待.....");
try{
aftp = new FtpClient(hostname,port);
aftp.login(uid,pwd);
aftp.binary();
//aftp.openPortDataConnection();
a = "连接主机:"+hostname+"成功!";
System.out.println(a);
}
catch(FtpLoginException e){
a="登陆主机:"+hostname+"失败!请检查用户名或密码是否正确:"+e;
System.out.println(a);
//return false;
}
catch (IOException e){
a="连接主机:"+hostname+"失败!请检查端口是否正确:"+e;
System.out.println(a);
//return false;
}
catch(SecurityException e)
{
a="无权限与主机:"+hostname+"连接!请检查是否有访问权限:"+e;
System.out.println(a);
//return false;
}

log(RWFileDir,a);
return aftp;
}

public void stop(String RWFileDir)
{
String message = "";
try {
if(aftp!=null){
aftp.closeServer();
message = "与主机"+hostname+"连接已断开!";
System.out.println(message);
log(RWFileDir,message);
}
}
catch(IOException e)
{
message = "与主机"+hostname+"断开连接失败!"+e;
System.out.println(message);
log(RWFileDir,message);
}
}


public boolean downloadFile(String RWFileDir,String filepathname){
boolean result=true;
String message = "";
if (aftp != null)
{
System.out.println("正在下载文件"+filepathname+",请等待....");
String badfile = filepathname.substring(filepathname.length()-4,filepathname.length());
String badlog = filepathname.substring(filepathname.length()-7,filepathname.length());
String baddir = "";
if ((badfile.compareTo(".bad") != 0) && (badlog.compareTo(".badlog") != 0)){
baddir = "subunsubtosp//";
}
else{
baddir = "bad//";
}
String strdir = "subunsubtosp//";
//System.out.println(RWFileDir + baddir + filepathname);
try{
//FtpClient fc=new FtpClient("192.168.0.56",2121);
//fc.login("lee","lee");
int ch;
File fi = new File(RWFileDir + baddir + filepathname);
//aftp.cd(strdir);
RandomAccessFile getFile = new RandomAccessFile(fi,"rw");
getFile.seek(0);
TelnetInputStream fget=aftp.get(strdir+filepathname);
DataInputStream puts = new DataInputStream(fget);
while ((ch = puts.read()) >= 0) {
getFile.write(ch);

}
//s.delete();

fget.close();
getFile.close();
//fc.closeServer();

message = "下载"+filepathname+"文件到"+baddir +"目录成功!";
System.out.println(message);
log(RWFileDir,message);
}
catch(IOException e){
message = "下载"+filepathname+"文件到"+baddir +"目录失败!"+e;
System.out.println(message);
log(RWFileDir,message);
result = false ;

}
}
else{
result = false;
}
return result;
}


public boolean uploadFile(String RWFileDir,String filepathname){
boolean result=true;
String message = "";
if (aftp != null)
{
System.out.println("正在上传文件"+filepathname+",请等待....");

try{
String fg =new String("//subunsubfromsp//");
int index = filepathname.lastIndexOf(fg);
String filename = filepathname.substring(index+1);
File localFile = new File(filepathname) ;

RandomAccessFile sendFile = new RandomAccessFile(filepathname,"r");
//
sendFile.seek(0);
//改名上传temp_
filename = filename.substring(0,15)+"temp_"+filename.substring(15,filename.length());
outs = aftp.put(filename);
outputs = new DataOutputStream(outs);
while (sendFile.getFilePointer() < sendFile.length() )
{
ch = sendFile.read();
outputs.write(ch);
}

rename(filename.substring(15,filename.length()),filename.substring(20,filename.length()));
outs.close();
sendFile.close();

message = "上传"+filepathname+"文件成功!";
System.out.println(message);
log(RWFileDir,message);
}
catch(IOException e){
message = "上传"+filepathname+"文件失败!"+e;
System.out.println(message);
log(RWFileDir,message);
result = false ;

}
}
else{
result = false;
}
return result;
}

public void rename(String oldName,String newName){

//aftp.renameTo(oldName,newName);
File Old = new File(oldName); //oldName
File New = new File(newName); //newName
//aftp.renameTo(New);
//boolean Old.renameTo(File newName);
//System.out.println(Old);
//System.out.println(New);

}

public static void deleFile(String RWFileDir) {
//try {
//取得ReadFile目录下的txt文件
String sdir = RWFileDir + "subunsubfromsp//";
File fdir = new File(sdir);
String FileName = "";
int j = fdir.list().length;

System.out.println(sdir+"目录下要删除的文件数:"+fdir.list().length);
File file;
for(int i=0;i {
//删除subunsubfromsp中的txt文件
FileName = RWFileDir + "subunsubfromsp//" + (fdir.list())[0];
file = new File(FileName);
file.delete();
System.out.println("已经成功删除"+FileName+"文件!");
}
//}
//catch (IOException e) {
// System.out.println("删除txt文件错误!");
// e.printStackTrace();
//}
}


public void showFileContents(String strdir)
{
StringBuffer buf = new StringBuffer();
try {
aftp.cd(strdir);
ins= aftp.list();
while ((ch=ins.read())>=0){
buf.append((char)ch);
}

System.out.println(buf.toString());

ins.close();
}
catch(IOException e)
{
}
}

// 返回当前目录的所有文件及文件夹

public ArrayList getFileList() throws IOException {
BufferedReader dr = new BufferedReader(new InputStreamReader(aftp.list()));
ArrayList al = new ArrayList();
String s = "";
while ( (s = dr.readLine()) != null) {
al.add(s);
}
return al;
}

public void setPath(String path) throws IOException {
if (aftp == null)
this.path = path;
else {
aftp.cd(path);
}
}

// 返回当前目录的文件名称

public ArrayList getNameList(String RWFileDir) throws IOException {

BufferedReader dr = new BufferedReader(new InputStreamReader(aftp.nameList("subunsubtosp//")));
ArrayList al = new ArrayList();
String s = "";
while ( (s = dr.readLine()) != null) {
al.add(s);
s = s.substring(13,s.length());
isFile(s);
downloadFile(RWFileDir,s);
//String strFileDelF = aftp.nameList("subunsubtosp//");
File fileDelF=new File(s);
fileDelF.delete();
}
return al;
//System.out.println(al.add(s));
}

// 判断一行文件信息是否为目录

public boolean isDir(String line) {
return ( (String) parseLine(line).get(0)).indexOf("d") != -1;
}

public boolean isFile(String line) {
return!isDir(line);
}

// 处理getFileList取得的行信息

private ArrayList parseLine(String line) {
ArrayList s1 = new ArrayList();
StringTokenizer st = new StringTokenizer(line, " ");
while (st.hasMoreTokens()) {
s1.add(st.nextToken());
}
return s1;
}

//写消息日志
public static void log(String RWFileDir,String msg)
{
String message = "";
try {
java.text.DateFormat df = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
java.text.DateFormat dflog = new java.text.SimpleDateFormat("yyyyMMdd");
java.util.Date date = new java.util.Date() ;
String datestr = df.format(new java.util.Date()) ;
String datelog = dflog.format(new java.util.Date()) ;
//String datelog = datestr.substring(0,10);
//datelog = datelog.replace('-',' ');

//按日期每天生成一个日志文件
FileWriter fwl = new FileWriter(RWFileDir + "CMSSftp"+datelog+".log",true);
PrintWriter outl = new PrintWriter(fwl);
outl.println(datestr + " " + msg);
outl.close();
fwl.close();
}catch (IOException e) {
message = "写log文件错误!"+e;
e.printStackTrace();
log(RWFileDir,message);
System.out.println(message);
}
}
}

分享到:
评论

相关推荐

    STM32+w5500+FTP client例子

    STM32+w5500+FTP client例子是嵌入式开发中的一个典型应用场景,它结合了STM32微控制器、W5500以太网接口芯片以及FTP客户端功能,实现了从远程FTP服务器下载文件的功能。这个例程主要用于帮助开发者理解和实践如何在...

    FTP client简单C实现

    在这个“FTP client简单C实现”项目中,我们关注的是如何用C语言编写一个基础的FTP客户端。C语言是一种底层、高效的编程语言,非常适合实现网络协议这样的系统级任务。 FTP客户端的核心功能包括连接到服务器、登录...

    ftp客户端 ftp client

    ftp客户端ftp client实现代码

    一个功能强大的FTP Client源代码,可以适应多种OS和FTP Server

    一个功能强大的FTP Client源代码,可以适应多种OS和FTP Server

    Mini-FTP.tar.gz_C++ FTP_FTP CLIENT_FTP client c++_c++ ftp_c++ft

    标题中的"Mini-FTP.tar.gz"表明这是一个使用C++编写的FTP客户端和服务器的源代码压缩包,"C++ FTP FTP CLIENT FTP client c++ c++ ftp c++ft"进一步确认了这个项目涉及到C++实现的FTP(文件传输协议)客户端和服务器...

    client_ftp.c.tar.gz_FTP CLIENT_easy _ftp client C_ftpclient_ftpc

    本文将深入探讨标题"client_ftp.c.tar.gz"中的FTP客户端实现,这是一个简单的C语言编写的FTP客户端代码,名为"easy_ftp client"或"ftpc"。 FTP(File Transfer Protocol)是一种应用层协议,用于在Internet上可靠地...

    FTP.zip_FTP client c++_ftp_ftp client_visual c

    在"FTP client make Wininet"描述中,开发者使用Wininet库来构建FTP客户端。 以下是使用Wininet库构建FTP客户端的一些关键步骤和知识点: 1. **初始化Internet会话**:首先,需要调用`InternetOpen`函数初始化一个...

    Web2Ftp Client

    【Web2Ftp Client】是一款基于Web的FTP客户端软件,它允许用户通过浏览器访问和管理远程FTP服务器上的文件。在互联网技术日益发达的今天,Web2Ftp Client为用户提供了一个无需安装、跨平台的文件传输解决方案,使得...

    绿色免费ftp_FileZilla FTP Client.rar

    FileZilla FTP Client是一款广泛应用的开源FTP客户端,它以其绿色、免费的特点深受用户喜爱。FTP,全称为“File Transfer Protocol”,即文件传输协议,是一种用于在网络上进行文件传输的标准协议。FileZilla FTP ...

    java--ftp(server_client).rar_FTP CLIENT_FTP server client_ftp_ja

    在描述中提到的"FTP CLIENT"部分,可能包含Java代码实现了一个简单的FTP客户端,能够连接到服务器,发送文件上传或下载请求。 FTP服务器是接收客户端命令并执行相应操作的实体。"FTP server client"可能是指一个...

    FileZilla FTP Client(1).rar

    FileZilla FTP Client是一款广泛应用的开源FTP客户端,它在IT领域扮演着重要的角色,尤其对于文件的上传和下载测试。FTP(File Transfer Protocol)是一种网络协议,用于在互联网上进行文件传输。FileZilla因其易用...

    win10 创建ftp client

    在Windows 10操作系统中创建FTP客户端,主要是为了实现与远程服务器之间的文件传输。FTP(File Transfer Protocol)是一种网络协议,用于在互联网上进行文件交换。在这个过程中,我们需要使用FTP客户端软件来连接到...

    ftp client source code

    FTP客户端源代码是用于实现File Transfer Protocol(FTP)服务的软件开发基础,它允许用户从远程服务器上传、下载文件。FTP客户端源代码通常包括多个组件,每个组件负责处理不同的任务,如连接管理、数据传输、命令...

    FTP.rar_FTP client c++_The Client_ftp client unicode_ftp 客户端_ft

    个完整的ftp客户端代码,虽然功能没有专业的客户端软件强大,但是也算是...-a complete ftp client code, although the function of the professional powerful client software, but is relatively good ftp client

    c# FTP client 源码

    FTP(File Transfer Protocol)则是一种网络协议,用于在互联网上进行文件传输。本项目是一个基于C#实现的FTP客户端,允许用户上传和下载文档,这在Web开发和系统集成中非常常见。 首先,我们要理解FTP客户端的基本...

    ftp.zip_FTP CLIENT_ftp_ftp ?_uploader

    "ftp.zip"中的"FTP CLIENT"指的是一个简单的FTP客户端上传工具,可能是由用户"uploader"创建或使用的。 FTP客户端的工作原理主要包括以下几个步骤: 1. **连接**:用户通过FTP客户端输入服务器的地址(IP地址或...

    FTP.rar_FTP server client_ftp_java ftp_java ftp client_java ftp

    ftp server and ftp client

    FTP.zip_BCB NMFTP_FTP CLIENT_ftp

    在本案例中,"FTP.zip_BCB NMFTP_FTP CLIENT_ftp" 提到的是使用BCB6(Borland C++ Builder 6)中的NMFTP控件来构建一个FTP客户端。 NMFTP控件是BCB中的一款组件,它简化了FTP客户端应用程序的开发过程。通过这个...

    全功能ftp client server可移植

    标题提到的“全功能ftp client server可移植”意味着这是一个包含了FTP客户端和服务器功能的软件,且其源代码可以被移植到不同的操作系统上。这通常意味着开发者可以灵活地在Linux、Windows、macOS或其他平台之间...

Global site tag (gtag.js) - Google Analytics