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 ...
记录了本人在科研中常用到的git操作,方便查询,内容并不全面,更多功能等用到的时候再加 基础操作: 初始化仓库 git init 克隆仓库 git clone <URL> 添加、提交全部修改 git add . git commit -m "message" 分支操作 显示当前branch git ...
分类:
其他好文 时间:
2020-07-15 16:05:47
阅读次数:
85
首先采用VS2019进行windows的message函数编程,实现一个message窗口。 具体代码如下: #include<Windows.h> int CALLBACK WinMain( _In_ HINSTANCE hInstance, _In_ HINSTANCE hPrevInstanc ...
分类:
其他好文 时间:
2020-07-15 10:44:18
阅读次数:
63
只需要把两个串拼接起来,之后求一下后缀数组求可覆盖最长重复子串模板即可 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> using namespace std; ty ...
分类:
编程语言 时间:
2020-07-15 01:12:09
阅读次数:
72
OpenMPI(open Message Passing Interface),OpenMPI是MPI的一种实现,是信息传递接口库项目。 1、安装OpenMPI # wget https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4. ...
分类:
其他好文 时间:
2020-07-14 00:21:48
阅读次数:
93