NetBeans项目编译时出现一个或多个错误

时间:2011-11-05 07:45:31

标签: java netbeans compiler-errors

我一直在尝试在NetBeans上运行一个简单的程序,但是在我点击RUN之后,我得到一个消息框 - 一个或多个项目被编译错误。应用程序可能意外结束。 当我“无论如何运行”时,我得到了程序所需的输出,但是如果我取消它,我在输出窗格中出现了这个错误 -

  

运行:/root/.netbeans/6.8/var/cache/executor-snippets/run.xml:45:   由用户取消

当我点击错误时,我被带到了

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

在run.xml文件上行。

我的代码是:

public class minitest {
    public static void main(String[] args) {
        Connect conn=null;
         try{
        Domain testDomain=conn.domainLookupByName("test");
        System.out.println("Domain:" + testDomain.getName() + " id " +
                           testDomain.getID() + " running " 
                           );
        } catch (LibvirtException e){
        System.out.println("exception caught:"+e);
        System.out.println(e.getError());
        }
        }
        } }

谢谢!

2 个答案:

答案 0 :(得分:0)

似乎你没有在类路径中拥有所有项目所需的库......

您是否验证了类路径?例如,你使用libvirt,你的项目类路径中是否有libvirt jar?

答案 1 :(得分:0)

编辑run.xml文件 您只需单击链接即可打开此文件 代码:

C:\Users\Nenad\.netbeans\7.0\var\cache\executor-snippets\run.xml

在运行窗口中。

然后设置dir = ""

所以这部分看起来像这样:

  <java classpath="${classpath-translated}" classname="${classname}" dir="" jvm="${platform.java}" fork="true">