【转】Android 服务器之SFTP服务器上传下载功能 -- 不错
原文网址:http://blog.csdn.net/tanghua0809/article/details/47056327
本文主要是讲解Android服务器之SFTP服务器的上传下载功能,也是对之前所做项目的整理。
主要的代码块如下所示,对代码中相应地方稍作调整,复制粘贴到项目即可以使用,代码中会提供相应注释。
1.MainActivity
- public class MainActivity extends Activity implements OnClickListener{
- private final String TAG="MainActivity";
- private Button buttonUpLoad = null;
- private Button buttonDownLoad = null;
- private SFTPUtils sftp;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_sftpmain);
- init();
- }
- public void init(){
- //获取控件对象
- buttonUpLoad = (Button) findViewById(R.id.button_upload);
- buttonDownLoad = (Button) findViewById(R.id.button_download);
- //设置控件对应相应函数
- buttonUpLoad.setOnClickListener(this);
- buttonDownLoad.setOnClickListener(this);
- sftp = new SFTPUtils("SFTP服务器IP", "用户名","密码");
- }
- public void onClick(final View v) {
- // TODO Auto-generated method stub
- new Thread() {
- @Override
- public void run() {
- //这里写入子线程需要做的工作
- switch (v.getId()) {
- case R.id.button_upload: {
- //上传文件
- Log.d(TAG,"上传文件");
- String localPath = "sdcard/xml/";
- String remotePath = "test";
- sftp.connect();
- Log.d(TAG,"连接成功");
- sftp.uploadFile(remotePath,"APPInfo.xml", localPath, "APPInfo.xml");
- Log.d(TAG,"上传成功");
- sftp.disconnect();
- Log.d(TAG,"断开连接");
- }
- break;
- case R.id.button_download: {
- //下载文件
- Log.d(TAG,"下载文件");
- String localPath = "sdcard/download/";
- String remotePath = "test";
- sftp.connect();
- Log.d(TAG,"连接成功");
- sftp.downloadFile(remotePath, "APPInfo.xml", localPath, "APPInfo.xml");
- Log.d(TAG,"下载成功");
- sftp.disconnect();
- Log.d(TAG,"断开连接");
- }
- break;
- default:
- break;
- }
- }
- }.start();
- };
- }
2.SFTPUtils
- public class SFTPUtils {
- private String TAG="SFTPUtils";
- private String host;
- private String username;
- private String password;
- private int port = 22;
- private ChannelSftp sftp = null;
- private Session sshSession = null;
- public SFTPUtils (String host, String username, String password) {
- this.host = host;
- this.username = username;
- this.password = password;
- }
- /**
- * connect server via sftp
- */
- public ChannelSftp connect() {
- JSch jsch = new JSch();
- try {
- sshSession = jsch.getSession(username, host, port);
- sshSession.setPassword(password);
- Properties sshConfig = new Properties();
- sshConfig.put("StrictHostKeyChecking", "no");
- sshSession.setConfig(sshConfig);
- sshSession.connect();
- Channel channel = sshSession.openChannel("sftp");
- if (channel != null) {
- channel.connect();
- } else {
- Log.e(TAG, "channel connecting failed.");
- }
- sftp = (ChannelSftp) channel;
- } catch (JSchException e) {
- e.printStackTrace();
- }
- return sftp;
- }
- /**
- * 断开服务器
- */
- public void disconnect() {
- if (this.sftp != null) {
- if (this.sftp.isConnected()) {
- this.sftp.disconnect();
- Log.d(TAG,"sftp is closed already");
- }
- }
- if (this.sshSession != null) {
- if (this.sshSession.isConnected()) {
- this.sshSession.disconnect();
- Log.d(TAG,"sshSession is closed already");
- }
- }
- }
- /**
- * 单个文件上传
- * @param remotePath
- * @param remoteFileName
- * @param localPath
- * @param localFileName
- * @return
- */
- public boolean uploadFile(String remotePath, String remoteFileName,
- String localPath, String localFileName) {
- FileInputStream in = null;
- try {
- createDir(remotePath);
- System.out.println(remotePath);
- File file = new File(localPath + localFileName);
- in = new FileInputStream(file);
- System.out.println(in);
- sftp.put(in, remoteFileName);
- System.out.println(sftp);
- return true;
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- } catch (SftpException e) {
- e.printStackTrace();
- } finally {
- if (in != null) {
- try {
- in.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return false;
- }
- /**
- * 批量上传
- * @param remotePath
- * @param localPath
- * @param del
- * @return
- */
- public boolean bacthUploadFile(String remotePath, String localPath,
- boolean del) {
- try {
- File file = new File(localPath);
- File[] files = file.listFiles();
- for (int i = 0; i < files.length; i++) {
- if (files[i].isFile()
- && files[i].getName().indexOf("bak") == -1) {
- synchronized(remotePath){
- if (this.uploadFile(remotePath, files[i].getName(),
- localPath, files[i].getName())
- && del) {
- deleteFile(localPath + files[i].getName());
- }
- }
- }
- }
- return true;
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- this.disconnect();
- }
- return false;
- }
- /**
- * 批量下载文件
- *
- * @param remotPath
- * 远程下载目录(以路径符号结束)
- * @param localPath
- * 本地保存目录(以路径符号结束)
- * @param fileFormat
- * 下载文件格式(以特定字符开头,为空不做检验)
- * @param del
- * 下载后是否删除sftp文件
- * @return
- */
- @SuppressWarnings("rawtypes")
- public boolean batchDownLoadFile(String remotPath, String localPath,
- String fileFormat, boolean del) {
- try {
- connect();
- Vector v = listFiles(remotPath);
- if (v.size() > 0) {
- Iterator it = v.iterator();
- while (it.hasNext()) {
- LsEntry entry = (LsEntry) it.next();
- String filename = entry.getFilename();
- SftpATTRS attrs = entry.getAttrs();
- if (!attrs.isDir()) {
- if (fileFormat != null && !"".equals(fileFormat.trim())) {
- if (filename.startsWith(fileFormat)) {
- if (this.downloadFile(remotPath, filename,
- localPath, filename)
- && del) {
- deleteSFTP(remotPath, filename);
- }
- }
- } else {
- if (this.downloadFile(remotPath, filename,
- localPath, filename)
- && del) {
- deleteSFTP(remotPath, filename);
- }
- }
- }
- }
- }
- } catch (SftpException e) {
- e.printStackTrace();
- } finally {
- this.disconnect();
- }
- return false;
- }
- /**
- * 单个文件下载
- * @param remotePath
- * @param remoteFileName
- * @param localPath
- * @param localFileName
- * @return
- */
- public boolean downloadFile(String remotePath, String remoteFileName,
- String localPath, String localFileName) {
- try {
- sftp.cd(remotePath);
- File file = new File(localPath + localFileName);
- mkdirs(localPath + localFileName);
- sftp.get(remoteFileName, new FileOutputStream(file));
- return true;
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- } catch (SftpException e) {
- e.printStackTrace();
- }
- return false;
- }
- /**
- * 删除文件
- * @param filePath
- * @return
- */
- public boolean deleteFile(String filePath) {
- File file = new File(filePath);
- if (!file.exists()) {
- return false;
- }
- if (!file.isFile()) {
- return false;
- }
- return file.delete();
- }
- public boolean createDir(String createpath) {
- try {
- if (isDirExist(createpath)) {
- this.sftp.cd(createpath);
- Log.d(TAG,createpath);
- return true;
- }
- String pathArry[] = createpath.split("/");
- StringBuffer filePath = new StringBuffer("/");
- for (String path : pathArry) {
- if (path.equals("")) {
- continue;
- }
- filePath.append(path + "/");
- if (isDirExist(createpath)) {
- sftp.cd(createpath);
- } else {
- sftp.mkdir(createpath);
- sftp.cd(createpath);
- }
- }
- this.sftp.cd(createpath);
- return true;
- } catch (SftpException e) {
- e.printStackTrace();
- }
- return false;
- }
- /**
- * 判断目录是否存在
- * @param directory
- * @return
- */
- @SuppressLint("DefaultLocale")
- public boolean isDirExist(String directory) {
- boolean isDirExistFlag = false;
- try {
- SftpATTRS sftpATTRS = sftp.lstat(directory);
- isDirExistFlag = true;
- return sftpATTRS.isDir();
- } catch (Exception e) {
- if (e.getMessage().toLowerCase().equals("no such file")) {
- isDirExistFlag = false;
- }
- }
- return isDirExistFlag;
- }
- public void deleteSFTP(String directory, String deleteFile) {
- try {
- sftp.cd(directory);
- sftp.rm(deleteFile);
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 创建目录
- * @param path
- */
- public void mkdirs(String path) {
- File f = new File(path);
- String fs = f.getParent();
- f = new File(fs);
- if (!f.exists()) {
- f.mkdirs();
- }
- }
- /**
- * 列出目录文件
- * @param directory
- * @return
- * @throws SftpException
- */
- @SuppressWarnings("rawtypes")
- public Vector listFiles(String directory) throws SftpException {
- return sftp.ls(directory);
- }
- }
3.导入jsch-0.1.52.jar,这个包网上有下载。注意一定要把它放到工程的libs目录下。
4.布局文件:activity_sftpmain.xml
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="24dip"
- android:layout_gravity="center"
- android:text="SFTP上传下载测试 "/>
- <Button
- android:id="@+id/button_upload"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="上传"
- />
- <Button
- android:id="@+id/button_download"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="下载"
- />
- </LinearLayout>
5.Manifest文件配置
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
补充:
Jsch Suppressed: java.lang.ClassNotFoundException: Lorg.ietf.jgss.Oid
try {
JSch jsch = new JSch();
session = jsch.getSession(userName, remoteHost, port);
session.setPassword(userPassword);
Properties prop = new Properties();
prop.put("StrictHostKeyChecking", "no");
session.setConfig(prop);
session.setConfig("PreferredAuthentications",
"password"); //add this line to your code
session.connect();
channel = session.openChannel("sftp");
channel.connect();
channelSftp = (ChannelSftp)channel;
} catch (Exception ex) {
ex.printStackTrace();
session.disconnect();
}
【转】Android 服务器之SFTP服务器上传下载功能 -- 不错的更多相关文章
- 【转】Android 服务器之SFTP服务器上传下载功能
原文网址:http://blog.csdn.net/tanghua0809/article/details/47056327 本文主要是讲解Android服务器之SFTP服务器的上传下载功能,也是对之 ...
- java 通过sftp服务器上传下载删除文件
最近做了一个sftp服务器文件下载的功能,mark一下: 首先是一个SftpClientUtil 类,封装了对sftp服务器文件上传.下载.删除的方法 import java.io.File; imp ...
- Android连接socket服务器上传下载多个文件
android连接socket服务器上传下载多个文件1.socket服务端SocketServer.java public class SocketServer { ;// 端口号,必须与客户端一致 ...
- 向linux服务器上传下载文件方式收集
向linux服务器上传下载文件方式收集 1. scp [优点]简单方便,安全可靠:支持限速参数[缺点]不支持排除目录[用法] scp就是secure copy,是用来进行远程文件拷贝的.数据传输使用 ...
- Linux下不借助工具实现远程linux服务器上传下载文件
# Linux下不借助工具实现远程linux服务器上传下载文件 ## 简介 - Linux下自带ssh工具,可以实现远程Linux服务器的功能- Linux下自带scp工具,可以实现文件传输功能 ## ...
- JavaWeb实现文件上传下载功能实例解析
转:http://www.cnblogs.com/xdp-gacl/p/4200090.html JavaWeb实现文件上传下载功能实例解析 在Web应用系统开发中,文件上传和下载功能是非常常用的功能 ...
- JavaWeb实现文件上传下载功能实例解析 (好用)
转: JavaWeb实现文件上传下载功能实例解析 转:http://www.cnblogs.com/xdp-gacl/p/4200090.html JavaWeb实现文件上传下载功能实例解析 在Web ...
- SFTP远程连接服务器上传下载文件-qt4.8.0-vs2010编译器-项目实例
本项目仅测试远程连接服务器,支持上传,下载文件,更多功能开发请看API自行开发. 环境:win7系统,Qt4.8.0版本,vs2010编译器 qt4.8.0-vs2010编译器项目实例下载地址:CSD ...
- 我的代码库-Java8实现FTP与SFTP文件上传下载
有网上的代码,也有自己的理解,代码备份 一般连接windows服务器使用FTP,连接linux服务器使用SFTP.linux都是通过SFTP上传文件,不需要额外安装,非要使用FTP的话,还得安装FTP ...
随机推荐
- tensorflow利用预训练模型进行目标检测(三):将检测结果存入mysql数据库
mysql版本:5.7 : 数据库:rdshare:表captain_america3_sd用来记录某帧是否被检测.表captain_america3_d用来记录检测到的数据. python模块,包部 ...
- ES 内存使用和GC指标——主节点每30秒会去检查其他节点的状态,如果任何节点的垃圾回收时间超过30秒(Garbage collection duration),则会导致主节点任务该节点脱离集群。
摘录自:http://blog.csdn.net/yangwenbo214/article/details/74000458 内存使用和GC指标 在运行Elasticsearch时,内存是您要密切监控 ...
- Oracle数据库三种标准的备份方法
Oracle数据库的三种标准的备份方法: 1.导出/导入(EXP/IMP). 2.热备份. 3.冷备份. 注释:导出备件是一种逻辑备份,冷备份和热备份是物理备份. 一.导出/导入(Export/Imp ...
- 杂项-电信:TL9000
ylbtech-杂项-电信:TL9000 TL9000是电信业质量体系要求(书1)与质量体系法则(书2)的指南, 它包括ISO9001的所有要求,以及硬件.软件, 服务方面行业的特别要求. 这些新增要 ...
- TimSort学习资料
深入理解 timsort 算法(1):自适应归并排序 如何找出Timsort算法和玉兔月球车中的Bug? Java TimSort算法 源码 笔记 Timsort https://en.wikiped ...
- xbox 相关
https://live.xbox.com/zh-CN/avatareditor xboxgames://
- 数据库自动备份压缩脚本(备份最近七天,七天之前自动删除,只保留rar文件)
把下面脚本添加到服务器计划任务中去,设置为每天执行即可,文件备份路径即为脚本所在路径,必须安装压缩文件 @echo offrem 计算指定天数之前的日期,用于后面删除指定天数的数据set DaysAg ...
- 阿里云大学Linux学习路线图(学+测)重磅上线!
推荐:阿里云大学—Linux运维学习路线(点击获取免费课程) 全新“学+测”模式 每阶段包含初.中.高三个难度等级考试,学完即测,找准短板,助您全方位自测掌握程度 课程系统全面 课程体系涵盖从Linu ...
- django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: admin
创建了一个Django项目,且包含一个admin的app,但是在启动Django的是时候抛出了以下异常: Unhandled exception in thread started by <fu ...
- docker mysql 数据持久化到本地、设置不区别表名大小写-清风柳絮-51CTO博客
原文:docker mysql 数据持久化到本地.设置不区别表名大小写-清风柳絮-51CTO博客 Docker MySQL 把数据存储在本地目录,很简单,只需要映射本地目录到容器即可 1.加上-v参数 ...