真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用Java怎么遠(yuǎn)程連接Linux服務(wù)器

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

成都創(chuàng)新互聯(lián)公司專注于額敏企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站制作。額敏網(wǎng)站建設(shè)公司,為額敏等地區(qū)提供建站服務(wù)。全流程按需開發(fā),專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

ThreadLocal 中以確保每個線程之間對FTP的打開與關(guān)閉互不影響。

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 sftpLocal = new ThreadLocal();
  private Ftp(String host, int port, String username, String password) throws Exception {
    JSch jsch = new JSch();
    jsch.getSession(username, host, port);
    //根據(jù)用戶名,密碼,端口號獲取session
    sshSession = jsch.getSession(username, host, port);
    sshSession.setPassword(password);
    //修改服務(wù)器/etc/ssh/sshd_config 中 GSSAPIAuthentication的值yes為no,解決用戶不能遠(yuǎn)程登錄
    sshSession.setConfig("userauth.gssapi-with-mic", "no");
    //為session對象設(shè)置properties,第一次訪問服務(wù)器時不用輸入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()) {
      //將新連接防止本地線程,實(shí)現(xiàn)并發(fā)處理
      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("關(guān)閉連接" + sftpLocal.get().sshSession);
      sftpLocal.set(null);
    }
  }
  /**
   * 關(guān)閉通道
   *
   * @throws Exception
   */
  public void closeChannel() {
    if (null != channel) {
      try {
        channel.disconnect();
      } catch (Exception e) {
        logger.error("關(guān)閉SFTP通道發(fā)生異常:", e);
      }
    }
    if (null != sshSession) {
      try {
        sshSession.disconnect();
      } catch (Exception e) {
        logger.error("SFTP關(guān)閉 session異常:", e);
      }
    }
  }
  /**
   * @param directory 上傳ftp的目錄
   * @param uploadFile 本地文件目錄
   *
   */
  public void upload(String directory, String uploadFile) throws Exception {
    try {
    //執(zhí)行列表展示ls 命令     channel.ls(directory);
    //執(zhí)行盤符切換cd 命令     channel.cd(directory);     List files = getFiles(uploadFile, new ArrayList());     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() + "關(guān)閉文件時.....異常!" + e.getMessage());       }       if (file.exists()) {         boolean b = file.delete();         logger.info(file.getName() + "文件上傳完畢!刪除標(biāo)識:" + b);       }     }     }catch (Exception e) {       logger.error("【子目錄創(chuàng)建中】:",e);             //創(chuàng)建子目錄       channel.mkdir(directory);     }   }   //獲取文件   public List getFiles(String realpath, List 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的特點(diǎn)有哪些

Java的特點(diǎn)有哪些 1.Java語言作為靜態(tài)面向?qū)ο缶幊陶Z言的代表,實(shí)現(xiàn)了面向?qū)ο罄碚?,允許程序員以優(yōu)雅的思維方式進(jìn)行復(fù)雜的編程。 2.Java具有簡單性、面向?qū)ο?、分布式、安全性、平臺獨(dú)立與可移植性、動態(tài)性等特點(diǎn)。 3.使用Java可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。

上述內(nèi)容就是使用Java怎么遠(yuǎn)程連接Linux服務(wù)器,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站名稱:使用Java怎么遠(yuǎn)程連接Linux服務(wù)器
網(wǎng)站URL:http://weahome.cn/article/psejcg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部