|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
java比较简单,没有C++的烦琐,但学习时最好有C++为基础.与JSP和SQL起应用,功能强大.程序在JAVA使用程序中怎样完成FTP的功效
年夜连捷通电脑手艺无限公司
王淼
----在JAVA的编程中,您大概会碰到FTP方面的编程,本文就来演示怎样完成它。
----本程序是由JBUILDER2.0来开辟的,为了勤俭篇幅我只列出次要的三个部分。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){;}
}
}
----本程序在WIN95/98/NT,Jbuilder2.0的情况下编译经由过程。
java是一种面向对象的编程语言,优点是可移植性比较高,最初设计时就是本着一次编写到处执行设计的。可以开发各种应用程序和游戏,不过速度没有c++快,所以一般是不用java来编写应用程序和电脑游戏。 |
|