JAvaログインftpアップロードファイル
484 ワード
FtpClient fc = new FtpClient(hostIP, 21);
fc.login(userName, pwd);
fc.binary();
TelnetOutputStream tos = fc.put(newfilename);//
InputStream is = new FileInputStream("d:\\11.jpg");//
byte[] bytes = new byte[1024];
while (true) {
int len = is.read(bytes);
if (len == -1) {
break;
}
tos.write(bytes);
}
tos.close();
fc.closeServer();