最近需要进行一组性能测试,用到了 JMeter 这个测试工具,简单记录下对它的了解以及安装过程。 JMeter 简介 全名为 Apache JMeter JMeter 是一个软件,使负载测试或业绩为导向的业务(功能)测试不同的协议或技术。 它是 Apache 软件基金会的Stefano Mazzoc ...
分类:
其他好文 时间:
2021-02-27 13:24:54
阅读次数:
0
JAVA安全编码规范 1、安全编码基本原则 1.1 所有输入数据都是有害的 直接输入数据: 对于用户通过 GET, POST, COOKIE, REQUEST等输入的数据以及框架提供的数据来源,即通信协议中从客户端传过来的一切变量,无论是用户手动填写的数据或是客户端浏览器或操作系统自动填写的数据,都 ...
分类:
编程语言 时间:
2021-02-25 12:22:03
阅读次数:
0
检查文件是否存在、可读等等 File file = new File("out.txt") println file.exists() println file.canRead() 向文件写入文本 File file = new File("out.txt") file.write "First l ...
分类:
其他好文 时间:
2021-02-24 13:10:56
阅读次数:
0
using System; namespace leecode1 { class Program { static void Main(string[] args) { string outString= string.Empty; string s1 = "abc"; string s2 = "p ...
分类:
其他好文 时间:
2021-02-24 12:48:10
阅读次数:
0
简介 实现List接口 允许任何元素,包括null 大致和Vector相当,除了ArrayList不是线程安全的 size()、isEmpty()、get()、set()、iterator()、listIterator()时间复杂度为常数 add()与增加的节点数相等,增加n个,O(n) 其他操作都 ...
分类:
其他好文 时间:
2021-02-23 14:37:54
阅读次数:
0
pyspark有个bug, 虽然下面代码写了 write.mode("overwrite")但是不生效 spark.conf.set("hive.exec.dynamic.partition.mode", "constrict") db_df.repartition(1).write.mode("o ...
分类:
其他好文 时间:
2021-02-23 14:14:20
阅读次数:
0
<script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> <script type="text/javascript"> document.write(returnCitySN["cip"]+','+returnCitySN["cnam ...
分类:
其他好文 时间:
2021-02-22 12:48:03
阅读次数:
0
安装阿里云SDK 安装Python开发环境。 访问Python官网下载Python安装包,并完成安装。目前,支持2.6.5及以上版本。 安装Python的包管理工具pip。(如果您已安装pip,请忽略此步骤。) 访问 pip 官网下载pip安装包,并完成安装。 安装IoT Python SDK。以管 ...
分类:
编程语言 时间:
2021-02-22 12:19:18
阅读次数:
0
<input type="button" value="禁用文本框" id="btn"/> <input type="text" value="" id="txt"/> <script src="common.js"></script> <script> //点击按钮禁用这个文本框 document ...
分类:
Web程序 时间:
2021-02-22 12:07:15
阅读次数:
0
更多事件:点击查询 load事件: <script type="text/javascript"> //整个页面窗口加载完成之后(所有标签加载完成) window.onload = function(){ //防止 js在前,标签在后的情况,js执行 时 标签没有加载完成 // alert('我加载 ...
分类:
Web程序 时间:
2021-02-22 12:00:37
阅读次数:
0