|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
其实你不用Struts,spring这些工具,直接用jsp,servlet能够很方便地写出来,而且,可以根据个人的水平、爱好,有很多方案。而struts,spring这些工具的出来。
FtpList部分是用来显现FTP服务器上的文件;GetButton部分为从FTP服务器下传一个文件;PutButton部分为向FTP服务器上传一个文件。
别忘了在程序中还要引进两个库文件(importsun.net.*,importsun.net.ftp.*)。
以下是这三部分的JAVA源程序:
(1)显现FTP服务器上的文件
voidftpList_actionPerformed(ActionEvente){
Stringserver=serverEdit.getText();
//输出的FTP服务器的IP地点
Stringuser=userEdit.getText();
//登录FTP服务器的用户名
Stringpassword=passwordEdit.getText();
//登录FTP服务器的用户名的口令
Stringpath=pathEdit.getText();
//FTP服务器上的路径
try{
FtpClientftpClient=newFtpClient();
//创立FtpClient对象
ftpClient.openServer(server);
//毗连FTP服务器
ftpClient.login(user,password);
//登录FTP服务器
if(path.length()!=0)ftpClient.cd(path);
TelnetInputStreamis=ftpClient.list();
intc;
while((c=is.read())!=-1){
System.out.print((char)c);}
is.close();
ftpClient.closeServer();//加入FTP服务器
}catch(IOExceptionex){;}
}
(2)从FTP服务器高低传一个文件
voidgetButton_actionPerformed(ActionEvente){
Stringserver=serverEdit.getText();
Stringuser=userEdit.getText();
Stringpassword=passwordEdit.getText();
Stringpath=pathEdit.getText();
Stringfilename=filenameEdit.getText();
try{
FtpClientftpClient=newFtpClient();
ftpClient.openServer(server);
ftpClient.login(user,password);
if(path.length()!=0)ftpClient.cd(path);
ftpClient.binary();
TelnetInputStreamis=ftpClient.get(filename);
Filefile_out=newFile(filename);
FileOutputStreamos=new
FileOutputStream(file_out);
byte[]bytes=newbyte[1024];
intc;
while((c=is.read(bytes))!=-1){
os.write(bytes,0,c);
}
is.close();
os.close();
ftpClient.closeServer();
}catch(IOExceptionex){;}
}
(3)向FTP服务器上上传一个文件
voidputButton_actionPerformed(ActionEvente){
Stringserver=serverEdit.getText();
Stringuser=userEdit.getText();
Stringpassword=passwordEdit.getText();
Stringpath=pathEdit.getText();
Stringfilename=filenameEdit.getText();
try{
FtpClientftpClient=newFtpClient();
ftpClient.openServer(server);
ftpClient.login(user,password);
if(path.length()!=0)ftpClient.cd(path);
ftpClient.binary();
TelnetOutputStreamos=ftpClient.put(filename);
Filefile_in=newFile(filename);
FileInputStreamis=newFileInputStream(file_in);
byte[]bytes=newbyte[1024];
intc;
while((c=is.read(bytes))!=-1){
os.write(bytes,0,c);}
is.close();
os.close();
ftpClient.closeServer();
}catch(IOExceptionex){;}
}
}
一旦你有了思想,那你编的程序就有了灵魂,不管是什么语言到了你的手里都会是你的工具而已,他们的价值是能尽快帮助你实现你想要的目标。但是如果你没有了思想,那就像是海里的帆船失去了船帆,是很难到打海的另一边的。 |
|