gpt4 book ai didi

java - 简单 Java 应用程序中的错误

转载 作者:行者123 更新时间:2023-12-01 07:42:37 25 4
gpt4 key购买 nike

只是玩弄java,尝试学习它等等。

这是我到目前为止使用 HtmlUnit 的代码。

package hsspider;

import com.gargoylesoftware.htmlunit.WebClient;

/**
* @author
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println("starting ");
Spider spider = new Spider();
spider.Test();
}
}


package hsspider;

import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
/**
* @author
*/
public class Spider {

public void Test() throws Exception
{
final WebClient webClient = new WebClient();
final HtmlPage page = webClient.getPage("http://www.google.com");
System.out.println(page.getTitleText());
}
}

我正在使用 Netbeans。

我似乎无法弄清楚问题出在哪里,为什么它不能编译?

错误:

C:\Users\mrblah\.netbeans\6.8\var\cache\executor-snippets\run.xml:45: 
Cancelled by user.
BUILD FAILED (total time: 0 seconds)

xml 中的行是:

 <translate-classpath classpath="${classpath}" targetProperty="classpath-translated" />

最佳答案

测试声明抛出异常。如果您将“抛出异常”添加到您的 main 方法中,它应该可以编译。例如:

/**
* @param args the command line arguments
*/
public static void main(String[] args) throws Exception {
System.out.println("starting ");
Spider spider = new Spider();
spider.Test();
}

关于java - 简单 Java 应用程序中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2008264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com