MQTT协议 写于2020.7.16 MQTT是什么 参考: https://mcxiaoke.gitbooks.io/mqtt-cn/content/mqtt/01-Introduction.html MQTT协议中文版本教程? https://www.runoob.com/w3cnote/mqt ...
分类:
其他好文 时间:
2020-07-16 21:18:51
阅读次数:
68
记录日志代码 /** * * @param conn 连接 * @param name 模块名字 * @param message 日志信息 * @param level 日志等级 * @param timeout 重试时间 */ public static void logCommon( Jedi ...
分类:
其他好文 时间:
2020-07-16 21:07:34
阅读次数:
102
node {stage 'S1' // Define an input step and capture the outcome from it.def outcome = input id: 'Run-test-suites',message: 'Workflow Configuration',o ...
分类:
其他好文 时间:
2020-07-16 21:04:26
阅读次数:
110
Copyright(c)1993-2004MicrosoftCorp.#Thisfilecontainsportnumbersforwell-knownservicesdefinedbyIANA#Format:#<servicename><portnumber>/<protocol>[aliases...][#<comment>]#echo7/tcp
分类:
其他好文 时间:
2020-07-16 12:13:31
阅读次数:
109
类 public class jarTs { public static void main(String[] args) throws IOException { String path =System.getProperty("user.dir"); System.out.println("us ...
分类:
编程语言 时间:
2020-07-16 11:49:30
阅读次数:
58
Logstash连接MySQL 下载MySQL驱动 打开驱动jar包下载地址:https://dev.mysql.com/downloads/connector/j/ 选择平台无关的版本 下载zip版本,在本地打开,解压出jar文件 因为logstash在ubuntu下的默认配置文件路径是 /etc ...
分类:
数据库 时间:
2020-07-15 23:45:46
阅读次数:
100
Java-文件加密传输(摘要+签名) 文件加密传输其实就是将文件以二进制格式进行传输。其中加密文件主要由:源文件二进制文件、源文件数字摘要、数字签名、特征码等等组成。摘要可确认文件的唯一性,数字签名则是对摘要进行了加密。 本文主要记录使用RSA加密方式其中生成RSA密钥主要介绍二种方式: 1、安装o ...
分类:
编程语言 时间:
2020-07-15 23:37:47
阅读次数:
86
mininet> r1 xterm Warning: This program is an suid-root program or is being run by the root user. The full text of the error or warning message cannot ...
分类:
Web程序 时间:
2020-07-15 23:29:02
阅读次数:
112
class QQEmail { public bool IsSetEmail(string FromAddress, string ToAddress, string Message,string Pwd) { MailAddress Address = new MailAddress(FromAd ...
label 语句在之前写的代码中很少用到。最近重新看了基础,发现之前没有真的清楚其作用,开始只知道 label 是代码“跳转”到这个标签,什么时候应用才比较好呢?带着疑问,重新梳理了一下。 在执行单层循环的时候,label 其实作用不明显,比如 loopTop: for(let i = 0; i < ...
分类:
编程语言 时间:
2020-07-15 16:06:16
阅读次数:
110