`
wuxshhappy
  • 浏览: 2826 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论
文章列表
/** * 执行WINDOWS指令 * * @param commend * @return * @throws IOException */ public static boolean executeCommend(String commend) throws Exception { try { Process process = Runtime.getRuntime().exec(commend); process.waitFor(); } catch (InterruptedException e) { // TODO Auto-gen ...
1、设置FTP 属性:用户名、密码、IP、端口、字符集等,利用properties文件实现动态配置 2、创建FTP连接: private boolean connectServer() throws Exception { boolean flag = true; int reply; if (this.ftpClient == null) { try { this.ftpClient = new FTPClient(); // 设置文件传输格式 this.ftpClient.setControlEncoding(this.charset); / ...
Global site tag (gtag.js) - Google Analytics