91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Java怎么遠程連接Linux服務器

發布時間:2021-05-17 15:57:56 來源:億速云 閱讀:352 作者:Leah 欄目:編程語言

本篇文章為大家展示了使用Java怎么遠程連接Linux服務器,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

ThreadLocal<Ftp> 中以確保每個線程之間對FTP的打開與關閉互不影響。

package com.test.utils;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
public class Ftp {
  //打印log日志
  private static final Log logger = LogFactory.getLog(Ftp.class);
  private static Date last_push_date = null;
  private Session sshSession;
  private ChannelSftp channel;
  private static ThreadLocal<Ftp> sftpLocal = new ThreadLocal<Ftp>();
  private Ftp(String host, int port, String username, String password) throws Exception {
    JSch jsch = new JSch();
    jsch.getSession(username, host, port);
    //根據用戶名,密碼,端口號獲取session
    sshSession = jsch.getSession(username, host, port);
    sshSession.setPassword(password);
    //修改服務器/etc/ssh/sshd_config 中 GSSAPIAuthentication的值yes為no,解決用戶不能遠程登錄
    sshSession.setConfig("userauth.gssapi-with-mic", "no");
    //為session對象設置properties,第一次訪問服務器時不用輸入yes
    sshSession.setConfig("StrictHostKeyChecking", "no");
    sshSession.connect();
    //獲取sftp通道
    channel = (ChannelSftp)sshSession.openChannel("sftp");
    channel.connect();
    logger.info("連接ftp成功!" + sshSession);
  }
  /**
   * 是否已連接
   *
   * @return
   */
  private boolean isConnected() {
    return null != channel && channel.isConnected();
  }
  /**
   * 獲取本地線程存儲的sftp客戶端
   *
   * @return
   * @throws Exception
   */
  public static Ftp getSftpUtil(String host, int port, String username, String password) throws Exception {
    //獲取本地線程
    Ftp sftpUtil = sftpLocal.get();
    if (null == sftpUtil || !sftpUtil.isConnected()) {
      //將新連接防止本地線程,實現并發處理
      sftpLocal.set(new Ftp(host, port, username, password));
    }
    return sftpLocal.get();
  }
  /**
   * 釋放本地線程存儲的sftp客戶端
   */
  public static void release() {
    if (null != sftpLocal.get()) {
      sftpLocal.get().closeChannel();
      logger.info("關閉連接" + sftpLocal.get().sshSession);
      sftpLocal.set(null);
    }
  }
  /**
   * 關閉通道
   *
   * @throws Exception
   */
  public void closeChannel() {
    if (null != channel) {
      try {
        channel.disconnect();
      } catch (Exception e) {
        logger.error("關閉SFTP通道發生異常:", e);
      }
    }
    if (null != sshSession) {
      try {
        sshSession.disconnect();
      } catch (Exception e) {
        logger.error("SFTP關閉 session異常:", e);
      }
    }
  }
  /**
   * @param directory 上傳ftp的目錄
   * @param uploadFile 本地文件目錄
   *
   */
  public void upload(String directory, String uploadFile) throws Exception {
    try {<br>    //執行列表展示ls 命令
    channel.ls(directory);<br>    //執行盤符切換cd 命令
    channel.cd(directory);
    List<File> files = getFiles(uploadFile, new ArrayList<File>());
    for (int i = 0; i < files.size(); i++) {
      File file = files.get(i);
      InputStream input = new BufferedInputStream(new FileInputStream(file));
      channel.put(input, file.getName());
      try {
        if (input != null) input.close();
      } catch (Exception e) {
        e.printStackTrace();
        logger.error(file.getName() + "關閉文件時.....異常!" + e.getMessage());
      }
      if (file.exists()) {
        boolean b = file.delete();
        logger.info(file.getName() + "文件上傳完畢!刪除標識:" + b);
      }
    }
    }catch (Exception e) {
      logger.error("【子目錄創建中】:",e);
            //創建子目錄
      channel.mkdir(directory);
    }
  }
  //獲取文件
  public List<File> getFiles(String realpath, List<File> files) {
    File realFile = new File(realpath);
    if (realFile.isDirectory()) {
      File[] subfiles = realFile.listFiles(new FileFilter() {
        @Override
        public boolean accept(File file) {
          if (null == last_push_date ) {
            return true;
          } else {
            long modifyDate = file.lastModified();
            return modifyDate > last_push_date.getTime();
          }
        }
      });
      for (File file : subfiles) {
        if (file.isDirectory()) {
          getFiles(file.getAbsolutePath(), files);
        } else {
          files.add(file);
        }
        if (null == last_push_date) {
          last_push_date = new Date(file.lastModified());
        } else {
          long modifyDate = file.lastModified();
          if (modifyDate > last_push_date.getTime()) {
            last_push_date = new Date(modifyDate);
          }
        }
      }
    }
    return files;
  }
}

Java的特點有哪些

Java的特點有哪些 1.Java語言作為靜態面向對象編程語言的代表,實現了面向對象理論,允許程序員以優雅的思維方式進行復雜的編程。 2.Java具有簡單性、面向對象、分布式、安全性、平臺獨立與可移植性、動態性等特點。 3.使用Java可以編寫桌面應用程序、Web應用程序、分布式系統和嵌入式系統應用程序等。

上述內容就是使用Java怎么遠程連接Linux服務器,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丹凤县| 桂平市| 铜梁县| 汕头市| 武乡县| 博客| 千阳县| 镇沅| 诸城市| 荣昌县| 利川市| 嘉义县| 沂南县| 临漳县| 合阳县| 霍州市| 鹿邑县| 和静县| 巴林左旗| 博爱县| 黑水县| 苏尼特右旗| 十堰市| 罗田县| 巴青县| 工布江达县| 乐东| 博客| 澳门| 马鞍山市| 湖北省| 湖州市| 邹城市| 澄迈县| 义马市| 北安市| 黑山县| 三穗县| 静安区| 平顺县| 崇阳县|