question: ubuntu@ubuntu:/usr/src/Linux-headers-3.5.0-23-generic$ sudo apt-get install cheese [sudo] password for ubuntu: E: Could not get lock /var/li ...
分类:
系统相关 时间:
2017-03-04 14:20:26
阅读次数:
458
Pythone抓取:抓取大多数情况属于get请求,即直接从对方服务器上获取数据。 Requests: import requests response = requests.get(url) content = requests.get(url).content print "response he ...
分类:
编程语言 时间:
2017-03-01 12:24:08
阅读次数:
162
#coding=utf-8import timeimport sysimport stompclass MyListener(object): def on_error(self, headers, message): print('received an error %s' % message) ...
分类:
编程语言 时间:
2017-03-01 11:58:29
阅读次数:
391
import java.io.IOException; import java.nio.charset.Charset; import com.csvreader.CsvReader; import com.csvreader.CsvWriter; public class CsvUtil { /*... ...
分类:
编程语言 时间:
2017-02-28 21:51:05
阅读次数:
198
1postman发送普通post请求 在地址栏里输入请求url:http://127.0.0.1:8081/getuser 选择“POST”方式, 点击''body", ''form-data", 添加 键:userid , 值:1 点击send发送请求,查看结果 2 postman发送json格式 ...
分类:
其他好文 时间:
2017-02-28 19:49:57
阅读次数:
200
Web自动化测试(25) Web自动化测试(25) HTTP 协议规定 POST 提交的数据必须放在消息主体(entity-body)中,但协议并没有规定数据必须使用什么编码方式。常见的四种编码方式如下: 1、application/x-www-form-urlencoded 这应该是最常见的 PO ...
分类:
编程语言 时间:
2017-02-24 15:40:15
阅读次数:
303
爬虫的终极形态:nightmare nightmare 是一个基于 electron 的自动化库(意思是说它自带浏览器),用于实现爬虫或自动化测试。相较于传统的爬虫框架(scrapy/pyspider),或者dom操作库(cheerio/jsdom),或者基于浏览器的自动化框架(selenium/p ...
分类:
Web程序 时间:
2017-02-21 00:41:24
阅读次数:
247
新建一个filter 另外web.xml中增加如下配置 http://hw1287789687.iteye.com/blog/2212292 ...
分类:
编程语言 时间:
2017-02-18 12:29:19
阅读次数:
178
eslint “eol-last”:0 文件末尾强制换行(就是代码结尾处,要来个空格,相当于加一行,设置为0就可以了) ./src/main.js error eol-last Newline required at endoffile but notfound /Users/xxx/site/xx ...
分类:
其他好文 时间:
2017-02-17 23:23:04
阅读次数:
3205
Google C++ Style Guide Table of Contents Header Files Self-contained Headers The #define Guard Forward Declarations Inline Functions Names and Order o ...
分类:
编程语言 时间:
2017-02-16 13:34:27
阅读次数:
295