Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
来自 HTMLUnit 的非常基本的示例,该网站未用 Java 编译:
final WebClient webClient = new WebClient(); final HtmlPage page = webClient.getPage("http://htmlunit.sourceforge.net");
我在页面变量上收到错误:类型不匹配:无法从 Page 转换为 HtmlPage。我不明白为什么会发生这种情况我有所有的 jar 文件并且有正确的导入!
要么你使用的是旧版本的 HtmlUnit,它还没有被通用化,要么你使用的是 JDK1.4 或更早版本。最后一个版本是 2.9 版。检查您正在使用的版本。