apache FTPS文件上传

boolean canConnection = false;
		boolean isConnectionSuccess = false;
		FTPSClient ftpsClient = null;
		
		try 
		{
			ftpsClient = new FTPSClient("SSL");
			ftpsClient.setConnectTimeout(300000);	//连接超时为5分钟
			ftpsClient.setDataTimeout(3600000);
			
			ftpsClient.connect(serverIP);
			
//			loger.info(traceStr+"Connected to " + serverIP + ".");
			
			int reply = ftpsClient.getReplyCode();
			
			canConnection = FTPReply.isPositiveCompletion(reply);  //可以判断是否可以连接
//			loger.info(""+"是否可以连接:"+canConnection);
			
			if(canConnection)
			{
				isConnectionSuccess = ftpsClient.login(serverName, password);
				if(!isConnectionSuccess)
				{
					System.out.println("服务器连接错误,请重新配置!");
				}
				else
				{
					System.out.println("连接服务器成功......");
				}
					
			}
			
		} catch (SocketException e) {
			e.printStackTrace();
			
		} catch (IOException e) {
			e.printStackTrace();
			
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
			
		}
 
 
boolean isUpLoadSuccess = false;
		File file = new File(clientFilePath);
		System.out.println("上传文件之前大小:"+file.length()/1024.);
		
		FileInputStream input = null; 
		try {
			
			input = new FileInputStream(clientFilePath);
			ftpsClient.enterLocalPassiveMode();
			isUpLoadSuccess = ftpsClient.storeFile(serverPath, input); 
			
		} catch (FileNotFoundException e) {
			e.printStackTrace();
			
		} catch (IOException e) {
			e.printStackTrace();
			
		}
		finally
		{
			if(null!=input)
			{
				try {
					input.close();
				} catch (IOException e) {
					e.printStackTrace();
					
				}
			}
		}
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值