我的个人小站
03
01
01
ajax请求问题 ajax请求问题
简易post请求$.post("demo_ajax_gethint.asp",{suggest:txt},function(result){ //执行的操作 });
2020-03-01
01
滑动验证码问题 滑动验证码问题
之前使用的是这个:https://juejin.im/post/5d78b6a16fb9a06ad547490b 但是现在感觉不是很清楚,所以就打算到网上找别的,然后就找到了这个。http://www.bootstrapmb.com/ite
2020-03-01
01
简单httpserver 简单httpserver
废话不多少,直接上代码 host = ('', 8888) class Resquest(BaseHTTPRequestHandler): def do_GET(self): self.send_response(2
2020-03-01
01
01
01
正则表达式 正则表达式
代码 Pattern p = Pattern.compile("(?<!c)a(//d+)bd"); Matcher m = p.matcher("da12bka3434bdca4343bdca234bm"); while(m.
2020-03-01
01
json数据解析 json数据解析
继续使用开源框架:https://github.com/google/gson 比如我是这样一个json数据:{"temp": 45, "Humidity": 78, "smoke": "safe"} 我们如何把这个解析为一个json对象?
2020-03-01
01
http请求 http请求
这里我使用第三方库:https://github.com/square/okhttp/ 引入方法:implementation("com.squareup.okhttp3:okhttp:4.4.0") 但是引入报错。。。 emm,研究了半
2020-03-01
17 / 18