OWASP ZAP(ZED ATTACK PROXY) Automatically find vulnerabilities in web applications. Free and easy to use. It can also be used for manual testing. This ...
分类:
Web程序 时间:
2020-02-10 22:21:26
阅读次数:
108
调用的时候会报这个错 javax.xml.ws.soap.SOAPFaultException: Could not find conduit initiator for address: http://localhost:8080/ws/hello and transport: http://sc ...
分类:
编程语言 时间:
2020-02-10 20:58:24
阅读次数:
101
This is an old article from my notebook. I found this very useful and I often look back into it to find some source demo for my work. I revise it agai ...
分类:
编程语言 时间:
2020-02-10 18:34:10
阅读次数:
117
很多时候,正则表达式都是一个很重要的东西。 首先,什么是正则表达式: 在编写处理字符串的程序或网页时,经常会有查找符合某些复杂规则的字符串的需要,正则表达式就是用于描述这些规则的工具,换句话说正则表达式是一种工具,它定义了字符串的匹配模式(如何检查一个字符串是否有跟某种模式匹配的部分或者从一个字符串 ...
分类:
其他好文 时间:
2020-02-10 18:20:55
阅读次数:
54
可以将简单的单表查询语句转换成Mongo过滤条件 列: 1、 SELECT score,person as name FROM demo WHERE person like '%z' and score between 80 and 100 db.demo.aggregate([ {"$match" ...
分类:
数据库 时间:
2020-02-10 17:57:51
阅读次数:
83
Given an array nums of integers, return how many of them contain an even number of digits. Example 1: Input: nums = [12,345,2,6,7896]Output: 2Explanat ...
分类:
其他好文 时间:
2020-02-10 17:53:55
阅读次数:
65
查询某个字段存在的语句 db.getCollection('tableName').find({"RouteInfo":{"$exists":true}}) 查询某个字段不存在的语句 db.getCollection('tableName').find({"RouteInfo":{"$exists" ...
分类:
数据库 时间:
2020-02-10 11:23:09
阅读次数:
57
一:find查找文件,xargs把find查找到的结果当做输入进行下一步的具体操作 #另外find可以可exec结合执行命令,但是exec是要等find命令执行完成之后才对find执行完成的结果进行操作,然而很不幸的是当文件太多的时候会出现文件队列过长的提示,这是应为linux有个临时内存地址只保存 ...
分类:
其他好文 时间:
2020-02-10 10:03:36
阅读次数:
110
是不是是有点拗口哈,在刚开始的开发中,经常会碰到"无法访问非静态方法",如下: Test.java 解决办法有二: 一 、设置其为静态方法 二、new 对象 引用方法 并不是什么时候都可以设置其为静态方法,比如安卓开发中findViewById只能在非静态方法中调用,那怎么办呢.很简单,new对象引 ...
分类:
编程语言 时间:
2020-02-10 09:27:50
阅读次数:
70
Problem : Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, gi ...
分类:
其他好文 时间:
2020-02-10 00:20:24
阅读次数:
81