我一直在試圖在NetBeans上運行一個簡單的程序,但是剛打開RUN時,我收到一個消息框 - 一個或多個項目編譯時出現錯誤。應用程序可能會結束不料。 當我「運行反正」我得到需要的結果的程序,但如果我取消它,我得到的輸出此錯誤pane-編譯有一個或多個錯誤的NetBeans項目
運行:/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());
}
}
} }
謝謝!