现在位置:首页 » 发表在 2015年12月 的所有文章
if(meta.getColumnClassName(i).contains("[B")){
InputStream in = rs.getBinaryStream(i);
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
...
1.双机mysql-5.6.20-winx64.msi,按照提示安装完成。
2.在安装的目录下,比如安装目录是“D:\Program Files\mysql\MySQL Server 5.6”,复制目录下的my-default.ini,重命名为my.ini保存到相同路径下。修改my.ini,
my.ini内容中有提示。我更改的内容是下面这几个参数
# These are com...
爬取网页,对资源文件进行存储时,抛出java.io.IOException: Server returned HTTP response code: 403 for URL 异常
处理方法:
URLConnection openConnection = new URL(href).openConnection();
openConnection.addRequestProperty("User-Agent", Conf...
<dependency>
<groupId>com.github.detro</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>1.2.0</version>
</dependency>
1...
用phantomjs+selenium截图时,出现
Exception in thread "main" java.lang.NoClassDefFoundError: org/openqa/selenium/browserlaunchers/Proxies
at org.openqa.selenium.phantomjs.PhantomJSDriverService.createDefa...
phantomjs 截图,多个setTimeout是为了让页面尽量加载完整
/**截图test.js**/
var page = require('webpage').create();
page.viewportSize = { width: 1024, height: 600 };
page.open('http://www.2345.com/', function(status) {
var bb= page.e...
本月热门文章排行榜