看自己动手写爬虫,没想到一上来就跪了. 里面提到用的jar包是apache的http客户端开源项目---HttpClient 就去官网下载了一个版本4.3 当按书上代码敲时 HttpClient httpclient = new HttpClient(); 敲完这句,就给跪了 提示Cannot instantiate the type HttpClient, google 了下,在stackoverflow上面说是应该 HttpClient httpclient = new DefaultHtt…
在使用java.util.List; 的时候,把语句写成了: List<Integer> arr = new List<Integer>(); 导致错误: Cannot instantiate the type List<Integer> 正确写法是: List<Integer> arr = new ArrayList<Integer>();…
Attribute "not-null" must be declared for element type "property"解决办法 在hiberante中编写映射文件时语法报错,原因是xml的DTD文件头不对 这是因为我是复制了hibernate.cfg.xml的头部文件 <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE hibernate-configu…