Springboot中JSCH的使用

Springboot中JSCH的使用

1. JSCH简介

JSch 是SSH2的一个纯Java实现。它允许你连接到一个sshd 服务器,使用端口转发,X11转发,文件传输等等。

你可以将它的功能集成到你自己的 程序中。同时该项目也提供一个J2ME版本用来在手机上直连SSHD服务器。

2.JSCH依赖

        <dependency><groupId>com.jcraft</groupId><artifactId>jsch</artifactId><version>0.1.55</version></dependency>

3. 使用方法

3.1 连接远程主机

/*** 初始化** @param ip       远程主机IP地址* @param port     远程主机端口* @param username 远程主机登陆用户名* @param password 远程主机登陆密码* @throws JSchException JSch异常*/public void init(String ip, Integer port, String username, String password) throws JSchException {JSch jsch = new JSch();session = jsch.getSession(username, ip, port);session.setPassword(password);Properties sshConfig = new Properties();sshConfig.put("StrictHostKeyChecking", strictHostKeyChecking);session.setConfig(sshConfig);session.connect(timeout);log.info("Session connected!");}public void init(String ip, String username, String password) throws JSchException {init(ip,22,username,password);}

3.2 ChannelExec使用说明

/*** 连接多次执行命令,执行命令完毕后需要执行close()方法** @param command 需要执行的指令* @return 执行结果* @throws Exception 没有执行初始化*/public String execCmd(String command) throws Exception {// 打开执行shell指令的通道channel = session.openChannel("exec");channelExec = (ChannelExec) channel;if (session == null || channel == null || channelExec == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}log.info("execCmd command - > {}", command);channelExec.setCommand(command);channel.setInputStream(null);channelExec.setErrStream(System.err);channel.connect();StringBuilder sb = new StringBuilder(16);try (InputStream in = channelExec.getInputStream();InputStreamReader isr = new InputStreamReader(in, StandardCharsets.UTF_8);BufferedReader reader = new BufferedReader(isr)) {String buffer;while ((buffer = reader.readLine()) != null) {sb.append("\n").append(buffer);}log.info("execCmd result - > {}", sb);return sb.toString();}}/*** 执行命令关闭连接* @param command 需要执行的指令* @return 执行结果* @throws Exception 没有执行初始化*/public String execCmdAndClose(String command) throws Exception {String result = execCmd(command);close();return result;}/*** 释放资源*/public void close() {if (channelExec != null && channelExec.isConnected()) {channelExec.disconnect();}if (channel != null && channel.isConnected()) {channel.disconnect();}if (session != null && session.isConnected()) {session.disconnect();}}

3.3 ChannelSftp使用说明

3.3.1 ChannelSftp简介

ChannelSftp类是JSch实现SFTP核心类,它包含了所有SFTP的方法,如:

  • put(): 文件上传
  • get(): 文件下载
  • cd(): 进入指定目录
  • ls(): 得到指定目录下的文件列表
  • rename(): 重命名指定文件或目录
  • rm(): 删除指定文件
  • mkdir(): 创建目录
  • rmdir(): 删除目录

3.3.2 JSch支持三种文件传输模式:

模式

描述

OVERWRITE

完全覆盖模式,这是JSch的默认文件传输模式,即如果目标文件已经存在,传输的文件将完全覆盖目标文件,产生新的文件。

RESUME

恢复模式,如果文件已经传输一部分,这时由于网络或其他任何原因导致文件传输中断,如果下一次传输相同的文件,则会从上一次中断的地方续传。

APPEND

追加模式,如果目标文件已存在,传输的文件将在目标文件后追加。

3.3.3 文件上传

实现文件上传可以调用ChannelSftp对象的put方法。ChannelSftp中有12个put方法的重载方法:

方法

描述

public void put(String src, String dst)

将本地文件名为src的文件上传到目标服务器,目标文件名为dst,若dst为目录,则目标文件名将与src文件名相同。采用默认的传输模式:OVERWRITE

public void put(String src,

 String dst, int mode)

将本地文件名为src的文件上传到目标服务器,目标文件名为dst,若dst为目录,则目标文件名将与src文件名相同。指定文件传输模式为mode(mode可选值为:ChannelSftp.OVERWRITE,ChannelSftp.RESUME,ChannelSftp.APPEND)

public void put(String src, 

String dst, SftpProgressMonitor monitor)

将本地文件名为src的文件上传到目标服务器,目标文件名为dst,若dst为目录,则目标文件名将与src文件名相同。采用默认的传输模式:OVERWRITE,并使用实现了SftpProgressMonitor接口的monitor对象来监控文件传输的进度。

public void put(String src, String dst,

SftpProgressMonitor monitor, int mode)

将本地文件名为src的文件上传到目标服务器,目标文件名为dst,若dst为目录,则目标文件名将与src文件名相同。指定传输模式为mode,并使用实现了SftpProgressMonitor接口的monitor对象来监控文件传输的进度。

public void put(InputStream src, String dst)

将本地的input stream对象src上传到目标服务器,目标文件名为dst,dst不能为目录。采用默认的传输模式:OVERWRITE

public void put(InputStream src, 

String dst, int mode)

将本地的input stream对象src上传到目标服务器,目标文件名为dst,dst不能为目录。指定文件传输模式为mode

public void put(InputStream src,

 String dst, SftpProgressMonitor monitor)

将本地的input stream对象src上传到目标服务器,目标文件名为dst,dst不能为目录。采用默认的传输模式:OVERWRITE,并使用实现了SftpProgressMonitor接口的monitor对象来监控传输的进度。

public void put(InputStream src, 

String dst,

SftpProgressMonitor monitor, 

int mode)

将本地的input stream对象src上传到目标服务器,目标文件名为dst,dst不能为目录。指定文件传输模式为mode,并使用实现了SftpProgressMonitor接口的monitor对象来监控传输的进度。

public OutputStream put(String dst)

该方法返回一个输出流,可以向该输出流中写入数据,最终将数据传输到目标服务器,目标文件名为dst,dst不能为目录。采用默认的传输模式:OVERWRITE

public OutputStream put(String dst,

 final int mode)

该方法返回一个输出流,可以向该输出流中写入数据,最终将数据传输到目标服务器,目标文件名为dst,dst不能为目录。指定文件传输模式为mode

public OutputStream put(String dst, 

final SftpProgressMonitor monitor, 

final int mode)

该方法返回一个输出流,可以向该输出流中写入数据,最终将数据传输到目标服务器,目标文件名为dst,dst不能为目录。指定文件传输模式为mode,并使用实现了SftpProgressMonitor接口的monitor对象来监控传输的进度。

public OutputStream put(String dst,

 final SftpProgressMonitor monitor,

 final int mode, long offset)

该方法返回一个输出流,可以向该输出流中写入数据,最终将数据传输到目标服务器,目标文件名为dst,dst不能为目录。指定文件传输模式为mode,并使用实现了SftpProgressMonitor接口的monitor对象来监控传输的进度。offset指定了一个偏移量,从输出流偏移offset开始写入数据。

    /*** SFTP文件上传** @param src 源地址* @param dst 目的地址* @throws Exception 上传文件失败*/public void putAndClose(String src, String dst) throws Exception {putAndClose(src, dst, ChannelSftp.OVERWRITE);}/*** SFTP文件上传** @param src  源地址* @param dst  目的地址* @param mode 上传模式 默认为ChannelSftp.OVERWRITE* @throws Exception 上传文件失败*/public void putAndClose(String src, String dst, int mode) throws Exception {initChannelSftp();log.info("Upload File {} -> {}", src, dst);channelSftp.put(src, dst, mode);log.info("Upload File Success!");close();}/*** SFTP文件上传并监控上传进度** @param src 源地址* @param dst 目的地址* @throws Exception 上传文件失败*/public void putMonitorAndClose(String src, String dst) throws Exception {putMonitorAndClose(src, dst, ChannelSftp.OVERWRITE);}/*** SFTP文件上传并监控上传进度** @param src  源地址* @param dst  目的地址* @param mode 上传模式 默认为ChannelSftp.OVERWRITE* @throws Exception 上传文件失败*/public void putMonitorAndClose(String src, String dst, int mode) throws Exception {initChannelSftp();UploadMonitor monitor = new UploadMonitor(new File(src).length());log.info("Upload File {} -> {}", src, dst);channelSftp.put(src, dst, monitor, mode);log.info("Upload File Success!");close();}/*** 释放资源*/public void close() {if (channelSftp != null && channelSftp.isConnected()) {channelSftp.disconnect();}if (channel != null && channel.isConnected()) {channel.disconnect();}if (session != null && session.isConnected()) {session.disconnect();}}private void initChannelSftp() throws Exception {channel = session.openChannel("sftp");channel.connect(); // 建立SFTP通道的连接channelSftp = (ChannelSftp) channel;if (session == null || channel == null || channelSftp == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}}
}

3.3.4 文件下载

JSch文件下载是通过调用ChannelSftp对象的get方法来实现的。ChannelSftp中有9个get方法的重载方法:

方法

描述

publicvoid get(String src, String dst)

将目标服务器上文件名为src的文件下载到本地,本地文件名为dst。若dst为目录,则下载到本地的文件名将与src文件名相同。(注:src必须是文件,不能为目录),采用默认的传输模式:OVERWRITE

publicvoid get(String src, 

String dst, 

SftpProgressMonitor monitor)

将目标服务器上文件名为src的文件下载到本地,本地文件名为dst。若dst为目录,则下载到本地的文件名将与src文件名相同。(注:src必须是文件,不能为目录),采用默认的传输模式:OVERWRITE

publicvoid get(String src, 

String dst,

SftpProgressMonitor monitor, 

int mode)

将目标服务器上文件名为src的文件下载到本地,本地文件名为dst。若dst为目录,则下载到本地的文件名将与src文件名相同。(注:src必须是文件,不能为目录)指定文件传输模式为mode(mode可选值为:ChannelSftp.OVERWRITE,ChannelSftp.RESUME,ChannelSftp.APPEND),并使用实现了SftpProgressMonitor接口的monitor对象来监控文件的传输进度。

publicvoid get(String src,

 OutputStream dst)

将目标服务器上文件名为src的文件下载到本地,下载的数据写入到输出流对象dst(如:文件输出流)。采用默认的传输模式:OVERWRITE

publicvoid get(String src, 

OutputStream dst, 

SftpProgressMonitor monitor)

将目标服务器上文件名为src的文件下载到本地,下载的数据写入到输出流对象dst(如:文件输出流)。采用默认的传输模式:OVERWRITE,并使用实现了SftpProgressMonitor接口的monitor对象来监控文件的传输进度。

publicvoid get(String src,

OutputStream dst, 

SftpProgressMonitor monitor, 

int mode, long skip)

将目标服务器上文件名为src的文件下载到本地,下载的数据写入到输出流对象dst(如:文件输出流)。指定文件传输模式为mode并使用实现了SftpProgressMonitor接口的monitor对象来监控文件的传输进度。skip指定了一个跳读量,即下载时从src文件跳过skip字节的数据。(一般不推荐使用该参数,默认设为0)

public InputStream get(String src)

该方法返回一个输入流,该输入流含有目标服务器上文件名为src的文件数据。可以从该输入流中读取数据,最终将数据传输到本地(如:读取数据后将数据写入到本地的文件中)(注:该方法不支持多种文件传输模式,如何读取与保存数据由应用程序自己确定)

public InputStream get(String src,

 SftpProgressMonitor monitor)

该方法返回一个输入流,该输入流含有目标服务器上文件名为src的文件数据。可以从该输入流中读取数据,最终将数据传输到本地(如:读取数据后将数据写入到本地的文件中)并使用实现了SftpProgressMonitor接口的monitor对象来监控文件的传输进度。(注:该方法不支持多种文件传输模式,如何读取与保存数据由应用程序自己确定)

public InputStream get(String src, 

final SftpProgressMonitor monitor, 

finallong skip)

该方法返回一个输入流,该输入流含有目标服务器上文件名为src的文件数据。可以从该输入流中读取数据,最终将数据传输到本地(如:读取数据后将数据写入到本地的文件中)并使用实现了SftpProgressMonitor接口的monitor对象来监控文件的传输进度。(注:该方法不支持多种文件传输模式,如何读取与保存数据由应用程序自己确定)skip指定了一个跳读量,即下载时从src文件跳过skip字节的数据。(一般不推荐使用该参数,默认设为0)

/*** SFTP文件下载** @param src 源文件地址* @param dst 目的地址* @throws Exception 下载文件失败*/public void getAndClose(String src, String dst) throws Exception {initChannelSftp();log.info("Download File {} -> {}", src, dst);channelSftp.get(src, dst);log.info("Download File Success!");close();}public void getMonitorAndClose(String src, String dst) throws Exception {initChannelSftp();FileProgressMonitor monitor = new FileProgressMonitor(new File(src).length());log.info("Download File {} -> {}", src, dst);channelSftp.get(src, dst, monitor);log.info("Download File Success!");close();}

3.4 ChannelShell使用说明

3.4.1 shell代码

/*** 执行复杂shell命令* @param cmds 多条命令* @return 执行结果* @throws Exception 连接异常*/public String execCmdByShell(String... cmds)throws Exception{return execCmdByShell(Arrays.asList(cmds));}/*** 执行复杂shell命令* @param cmds 多条命令* @return 执行结果* @throws Exception 连接异常*/public String execCmdByShell(List<String> cmds) throws Exception {String result = "";initChannelShell();InputStream inputStream = channelShell.getInputStream();channelShell.setPty(true);channelShell.connect();OutputStream outputStream = channelShell.getOutputStream();PrintWriter printWriter = new PrintWriter(outputStream);for (String cmd : cmds) {printWriter.println(cmd);}printWriter.flush();byte[] tmp = new byte[1024];while (true) {while (inputStream.available() > 0) {int i = inputStream.read(tmp, 0, 1024);if (i < 0) {break;}String s = new String(tmp, 0, i);if (s.contains("--More--")) {outputStream.write((" ").getBytes());outputStream.flush();}System.out.println(s);}if (channelShell.isClosed()) {System.out.println("exit-status:" + channelShell.getExitStatus());break;}try {Thread.sleep(1000);} catch (Exception e) {e.printStackTrace();}}outputStream.close();inputStream.close();return result;}
private void initChannelShell() throws Exception {// 打开执行shell指令的通道channel = session.openChannel("shell");channelShell = (ChannelShell) channel;if (session == null || channel == null || channelShell == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}}

3.5 完整工具类代码

ShellUtil.java

@Slf4j
@Component
@Slf4j
@Component
@Scope(value = "prototype")
public class ShellUtil {
    @Value("${ssh.strictHostKeyChecking:no}")private String strictHostKeyChecking;
    @Value("${ssh.timeout:30000}")private Integer timeout;private Session session;private Channel channel;private ChannelExec channelExec;private ChannelSftp channelSftp;private ChannelShell channelShell;/*** 初始化** @param ip       远程主机IP地址* @param port     远程主机端口* @param username 远程主机登陆用户名* @param password 远程主机登陆密码* @throws JSchException JSch异常*/public void init(String ip, Integer port, String username, String password) throws JSchException {JSch jsch = new JSch();session = jsch.getSession(username, ip, port);session.setPassword(password);Properties sshConfig = new Properties();sshConfig.put("StrictHostKeyChecking", strictHostKeyChecking);session.setConfig(sshConfig);session.connect(timeout);log.info("Session connected!");}public void init(String ip, String username, String password) throws JSchException {init(ip, 22, username, password);}/*** 连接多次执行命令,执行命令完毕后需要执行close()方法** @param command 需要执行的指令* @return 执行结果* @throws Exception 没有执行初始化*/public String execCmd(String command) throws Exception {initChannelExec();log.info("execCmd command - > {}", command);channelExec.setCommand(command);channel.setInputStream(null);channelExec.setErrStream(System.err);channel.connect();StringBuilder sb = new StringBuilder(16);try (InputStream in = channelExec.getInputStream();InputStreamReader isr = new InputStreamReader(in, StandardCharsets.UTF_8);BufferedReader reader = new BufferedReader(isr)) {String buffer;while ((buffer = reader.readLine()) != null) {sb.append("\n").append(buffer);}log.info("execCmd result - > {}", sb);return sb.toString();}}/*** 执行命令关闭连接** @param command 需要执行的指令* @return 执行结果* @throws Exception 没有执行初始化*/public String execCmdAndClose(String command) throws Exception {String result = execCmd(command);close();return result;}/*** 执行复杂shell命令** @param cmds 多条命令* @return 执行结果* @throws Exception 连接异常*/public String execCmdByShell(String... cmds) throws Exception {return execCmdByShell(Arrays.asList(cmds));}/*** 执行复杂shell命令** @param cmds 多条命令* @return 执行结果* @throws Exception 连接异常*/public String execCmdByShell(List<String> cmds) throws Exception {String result = "";initChannelShell();InputStream inputStream = channelShell.getInputStream();channelShell.setPty(true);channelShell.connect();OutputStream outputStream = channelShell.getOutputStream();PrintWriter printWriter = new PrintWriter(outputStream);for (String cmd : cmds) {printWriter.println(cmd);}printWriter.flush();byte[] tmp = new byte[1024];while (true) {while (inputStream.available() > 0) {int i = inputStream.read(tmp, 0, 1024);if (i < 0) {break;}String s = new String(tmp, 0, i);if (s.contains("--More--")) {outputStream.write((" ").getBytes());outputStream.flush();}System.out.println(s);}if (channelShell.isClosed()) {System.out.println("exit-status:" + channelShell.getExitStatus());break;}try {Thread.sleep(1000);} catch (Exception e) {e.printStackTrace();}}outputStream.close();inputStream.close();return result;}/*** SFTP文件上传** @param src 源地址* @param dst 目的地址* @throws Exception 上传文件失败*/public void putAndClose(String src, String dst) throws Exception {putAndClose(src, dst, ChannelSftp.OVERWRITE);}/*** SFTP文件上传** @param src  源地址* @param dst  目的地址* @param mode 上传模式 默认为ChannelSftp.OVERWRITE* @throws Exception 上传文件失败*/public void putAndClose(String src, String dst, int mode) throws Exception {put(src, dst, mode);close();}public void put(String src, String dst) throws Exception {put(src, dst, ChannelSftp.OVERWRITE);}public void put(String src, String dst, int mode) throws Exception {initChannelSftp();log.info("Upload File {} -> {}", src, dst);channelSftp.put(src, dst, mode);log.info("Upload File Success!");}/*** SFTP文件上传并监控上传进度** @param src 源地址* @param dst 目的地址* @throws Exception 上传文件失败*/public void putMonitorAndClose(String src, String dst) throws Exception {putMonitorAndClose(src, dst, ChannelSftp.OVERWRITE);}/*** SFTP文件上传并监控上传进度** @param src  源地址* @param dst  目的地址* @param mode 上传模式 默认为ChannelSftp.OVERWRITE* @throws Exception 上传文件失败*/public void putMonitorAndClose(String src, String dst, int mode) throws Exception {initChannelSftp();FileProgressMonitor monitor = new FileProgressMonitor(new File(src).length());log.info("Upload File {} -> {}", src, dst);channelSftp.put(src, dst, monitor, mode);log.info("Upload File Success!");close();}/*** SFTP文件下载** @param src 源文件地址* @param dst 目的地址* @throws Exception 下载文件失败*/public void getAndClose(String src, String dst) throws Exception {get(src,dst);close();}public void get(String src, String dst) throws Exception {initChannelSftp();log.info("Download File {} -> {}", src, dst);channelSftp.get(src, dst);log.info("Download File Success!");}/*** SFTP文件下载并监控下载进度** @param src 源文件地址* @param dst 目的地址* @throws Exception 下载文件失败*/public void getMonitorAndClose(String src, String dst) throws Exception {initChannelSftp();FileProgressMonitor monitor = new FileProgressMonitor(new File(src).length());log.info("Download File {} -> {}", src, dst);channelSftp.get(src, dst, monitor);log.info("Download File Success!");close();}/*** 删除指定目录文件** @param path 删除路径* @throws Exception 远程主机连接异常*/public void deleteFile(String path) throws Exception {initChannelSftp();channelSftp.rm(path);log.info("Delete File {}", path);}/*** 删除指定目录** @param path 删除路径* @throws Exception 远程主机连接异常*/public void deleteDir(String path) throws Exception {initChannelSftp();channelSftp.rmdir(path);log.info("Delete Dir {} ", path);}/*** 释放资源*/public void close() {if (channelSftp != null && channelSftp.isConnected()) {channelSftp.disconnect();}if (channelExec != null && channelExec.isConnected()) {channelExec.disconnect();}if (channel != null && channel.isConnected()) {channel.disconnect();}if (session != null && session.isConnected()) {session.disconnect();}}private void initChannelSftp() throws Exception {channel = session.openChannel("sftp");channel.connect(); // 建立SFTP通道的连接channelSftp = (ChannelSftp) channel;if (session == null || channel == null || channelSftp == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}}private void initChannelExec() throws Exception {// 打开执行shell指令的通道channel = session.openChannel("exec");channelExec = (ChannelExec) channel;if (session == null || channel == null || channelExec == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}}private void initChannelShell() throws Exception {// 打开执行shell指令的通道channel = session.openChannel("shell");channelShell = (ChannelShell) channel;if (session == null || channel == null || channelShell == null) {log.error("请先执行init()");throw new Exception("请先执行init()");}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/799585.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

检定重型铸铁平台的方法——北重厂家

检定重型铸铁平台的方法一般包括以下几个方面&#xff1a; 1.外观检查&#xff1a;检查平台表面是否平整和光滑&#xff0c;是否有明显的裂纹、磨损或损坏等情况。 2.尺寸检测&#xff1a;使用专用的测量工具&#xff0c;如千分尺、测微计等&#xff0c;测量平台的尺寸&#x…

Day107:代码审计-PHP模型开发篇MVC层RCE执行文件对比法1day分析0day验证

目录 MVC 架构 CNVD-代码执行1day-lmxcms1.40版本 CNVD-命令执行1day-baijiacms4.1.4版本 知识点&#xff1a; 1、PHP审计-MVC开发-RCE&代码执行 2、PHP审计-MVC开发-RCE&命令执行 3、PHP审计-MVC开发-RCE&文件对比 MVC 架构 MVC流程&#xff1a; Controller截…

支持向量机(SVM)白话之个人理解(学习记录)

本文仅有文字理解部分&#xff0c;没有相应的数学公式推导过程&#xff0c;便于新手理解。 一、什么是支持向量机 首先我们看下面这张图&#xff0c;在图中圆形和三角形分别代表不同的数据类型&#xff0c;如何画出一条直线使两者能够显著地区分开来呢&#xff1f; 答案可以多…

商品详情API接口根据商品ID查询商品标题价格描述等详情数据

商品详情API接口通常用于根据商品ID查询商品的详细信息&#xff0c;如标题、价格、描述等。这些信息对于电子商务网站、移动应用和其他需要展示商品信息的平台非常有用。以下是一个简单的示例&#xff0c;说明如何使用Python调用商品详情API接口。 item_get-获得商品详情 公共…

成都污水处理设备厂家怎么选?

在选择成都的污水处理设备厂家时&#xff0c;可以从以下几个方面来进行评估和选择&#xff1a; 1. **公司资质**&#xff1a;首先需要确认厂家是否拥有合法的营业执照、环保设备生产许可证及相关的环保工程资质。 2. **技术实力**&#xff1a;了解厂家是否具备雄厚的技术研发实…

通过自动化部署消除人为操作:不断提高提交部署比率

三十年后&#xff0c;我仍然热爱成为一名软件工程师。事实上&#xff0c;我最近读了威尔拉森&#xff08;Will Larson&#xff09;的《员工工程师&#xff1a;超越管理轨道的领导力》&#xff0c;这进一步点燃了我以编程方式解决复杂问题的热情。知道雇主继续照顾员工、原则和杰…

Goingpub国自然基金-免费查询

可进行年份、学部、项目类别等检索&#xff0c;支持生成主题词汇总分析报告。 最最最关键&#xff0c;免费&#xff0c;只需要你注册登录一下&#xff0c;防止被爬虫侵扰。 界面简单&#xff0c;实用&#xff0c;支持模糊搜索&#xff0c;包含最新2023年数据&#xff0c;共56…

Python异常值分析

异常值分析是检验数据是否有录入错误以及含有不合常理的数据。忽视异常值的存在是十分危险的&#xff0c;不加剔除地把异常值包括进数据的计算分析过程中&#xff0c;对结果会产生不良影响&#xff1b;重视异常值的出现&#xff0c;分析其产生的原因&#xff0c;常常成为发现问…

从0开始学人工智能测试节选:Spark -- 结构化数据领域中测试人员的万金油技术(一)

回顾一下模型的生命周期 需要注意的是&#xff0c;在这个流程中&#xff0c;测试至少要参与的以下的活动&#xff1a; 离线的模型测试线上线下一致性测试数据质量测试模型的线上质量监控建模过程的功能/性能等测试 可以看出来测试人员需要做的事情其实不少&#xff0c;整个建模…

C++之静态变量和全局变量的区别

全局变量和静态变量的存储方式是一样的&#xff0c;只是作用域不同。 静态局部变量具有局部作用域只对定义自己的函数可见&#xff0c;只被初始化一次&#xff0c;自从初始化一次之后直到程序运行期间一直都在。 静态全局变量具有全局作用域作用于定义它的程序文件但是不能作…

批量更新多个linux服务器的jar包脚本。

一、问题背景: 实际开发过程中,有多套环境,每次修改代码时,需要更新多套环境,很费时费力,之前是打好包之后挨个服务器去传,然后打开xshell,连接这几台服务器,然后点xshell的选项卡→排列→瓷砖排列,再点工具→发送键输入到所有会话,然后再cd到目录中,执行我们启动…

Python景区票务人脸识别系统(V2.0),附源码

博主介绍&#xff1a;✌程序员徐师兄、7年大厂程序员经历。全网粉丝12w、csdn博客专家、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精彩专栏推荐订阅&#x1f447;…

uniapp使用npm命令引入font-awesome图标库最新版本并解决APP和小程序不显示图标的问题

uniapp使用npm命令引入font-awesome图标库最新版本 图标库网址&#xff1a;https://fontawesome.com/search?qtools&or 命令行&#xff1a; 引入 npm i fortawesome/fontawesome-free 查看版本 npm list fortawesome在main.js文件中&#xff1a; import fortawesome/fo…

读《C Primer Plus》

1、汇编语言是为特殊的中央处理单元设计的一系列内部指令&#xff0c;使用助记符来表示&#xff1b;不同的CPU系列使用不同的汇编语言。 2、C语言充分利用计算机优势&#xff0c;使它具有汇编语言才有的微调控能力&#xff0c;可移植性极好。 3、C语言可以访问硬件、操作内存…

阿里云服务器可以干嘛?阿里云服务器八大用途介绍

阿里云服务器可以干嘛&#xff1f;能干啥你还不知道么&#xff01;简单来讲可用来搭建网站、个人博客、企业官网、论坛、电子商务、AI、LLM大语言模型、测试环境等&#xff0c;阿里云百科aliyunbaike.com整理阿里云服务器的用途&#xff1a; 阿里云服务器活动 aliyunbaike.com…

SpringBoot表单防止重复提交

哪些因素会引起重复提交&#xff1f; 开发的项目中可能会出现下面这些情况&#xff1a; 前端下单按钮重复点击导致订单创建多次 网速等原因造成页面卡顿&#xff0c;用户重复刷新提交请求 黑客或恶意用户使用postman等http工具重复恶意提交表单 重复提交会带来哪些问题&…

SQL Server语法基础:入门到精通

博客前言 在数据库管理的世界中&#xff0c;SQL Server无疑是一个重要的角色。无论是初学者还是经验丰富的数据库管理员&#xff0c;都需要对SQL Server的查询语法有深入的理解。本文将带领大家深入解析SQL Server的查询语法&#xff0c;并分享一些实用的技巧&#xff0c;帮助…

Kubernetes(K8s)运维实战:案例解析与代码实践

一、引言 随着容器技术的普及&#xff0c;Kubernetes&#xff08;K8s&#xff09;作为容器编排领域的领军者&#xff0c;已成为企业运维不可或缺的工具。K8s以其强大的自动化管理、可扩展性和高可用性等特点&#xff0c;为运维人员提供了便捷、高效的管理手段。本文将结合具体案…

Redis 之集群模式

一 集群原理 集群&#xff0c;即Redis Cluster&#xff0c;是Redis 3.0开始引入的分布式存储方案。 集群由多个节点(Node)组成&#xff0c;Redis的数据分布在这些节点中。 集群中的节点分为主节点和从节点&#xff1a;只有主节点负责读写请求和集群信息的维护&#xff1b;从…

突破编程_前端_SVG(概述)

1 什么是 SVG SVG&#xff0c;全称可缩放矢量图形&#xff08;Scalable Vector Graphics&#xff09;&#xff0c;是一种基于 XML&#xff08;可扩展标记语言&#xff09;的矢量图像格式。这种图像格式的主要特点是它描述的是矢量图形&#xff0c;而不是基于像素的位图图像。因…