- 博客(51)
- 资源 (3)
- 收藏
- 关注
原创 CMake构建C#工程(protobuf)
第一级CMakeLists.txt。第二级CMakeLists.txt。第三级CMakeLists.txt。通过build.bat执行编译。
2025-01-13 21:16:59
326
原创 Windows Server 2019安装docker服务
离线状态下,使用脚本在Windows Server 2019环境中安装docker服务。
2023-11-05 12:34:04
1828
原创 c++ 计算程序耗时
惊喜存档。https://en.cppreference.com/w/cpp/chrono计算程序耗时时间。#include <iostream>#include <chrono> long fibonacci(unsigned n){ if (n < 2) return n; return fibonacci(n-1) + fibonacci(n-2);} int main(){ auto start = std::..
2022-05-24 00:29:37
417
原创 jmeter-ForEach控制器
使用场景:需要对某个列表数据进行遍历操作。1、在某个请求的响应数据中,提取到目标数据,存储为数组变量。Names of created variables: 存储为变量,命名变量JSON Path expressions: json提取表达式Match No.(0 for Random): 提取变量的位置,0表示随机Compute concatenation var(suffix _ALL): 设置是否串联所有匹配值并存储为“变量名_ALL”Default Values: 默认值
2022-05-04 16:49:45
726
原创 jmeter-多用户场景
使用现场组:setUp线程组、普通线程组、tearDown线程组使用场景:setUp线程组:多用户登录普通线程组:多用户在线访问(不再模拟用户登录退出操作,仅保留业务使用场景部分)tearDown线程组:多用户退出脚本设置:1、测试数据准备:使用循环控制器造用户数据JDBC Request -- 查询符合条件的用户名信息BeanShell 后置处理程序 -- 将结果写入文件// 修改数据库安装目录下的my.ini文件// set global group_co
2022-05-04 15:41:19
673
原创 linux 在线安装部分依赖项
1、gccyum -y install gcc gcc-c++2、cmakeyum -y install cmake3、autoconfyum -y install autoconf automake libtool4、protobuf./autogen.sh./configuremakemake install5、glogGitHub - google/glog at v0.4.0./autogen.sh && ./configure
2022-05-04 15:10:59
1038
原创 jmeter-测试准备
目录结构apache-jmeter-5.4.3 原始软件;data 数据文件,存放参数化数据,如username.csv、token.csv等;dependency 依赖项,一些第三方插件存档;files 用于一些需要文件上传的接口,按不同文件类型存储;jmx 测试脚本存储;perf-analysis 测试分析报告存储;perf-testing-with-cmd 命令行模式下运行时的测试报告存储;@echo offrem rd /s /q directory.
2022-05-04 14:57:22
156
原创 c++ 从文件中读取多行数据
vector<string> GetList(string fileName){ vector<string> lists; string str; ifstream file(fileName + “.dat”); while(!file.eof()) { file >> str; lists.push_back(str); } file.close(); return lists;}
2020-07-24 17:47:17
972
原创 c++ 写文本到指定目录(接上篇)
void Log(string filePath, string fileName, string way, string content){ File *fp; if(0 != _access(filePath.c_str(),0)) { CreateDir(filePath); } string fullPath = filePath + “\\” + fileName; fopen_s(&fp, fullPath.c_str(), way.c_str());
2020-07-24 17:39:52
812
原创 c++ 创建多级目录
#include <io.h>#include <direct.h>void CreateDir(string filePath){ int m = 0, n; string shortPath; shortPath = filePath.substr(0, 2); filePath = filePath.substr(3, filePath.size()); while(m >= 0) { m = filePath.find(“\\”
2020-07-24 17:28:47
422
原创 c++ 设置dos窗口的前景色
设置dos窗口中字体颜色#include “windows.h”void color(short x){ if(x >= 0 && x <=15) SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), x); else SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),FOREGROUND_INTENSITY);}...
2020-07-24 17:05:14
308
原创 c++ 获取机器时间
用于记录时间string GetCurTime(){ time_t sysTime; tm localTime; time(&sysTime); localtime_s(&localTime,&sysTime); char buf[128]; snprintf(buf,sizeof(buf),”%04d-%02d-%02d_%02d%02d%02d”,localTime.tm_year + 1900,localTime.tm_mon + 1,localT
2020-07-24 16:57:06
699
tomcat允许跨域——java-property-utils-1.10.jar、cors-filter-2.10.jar
2022-05-15
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人