2016-04-14 49 views
0

我想建立Geneious程序,但我得到下面的異常錯誤:java.lang.NoSuchMethodException:沒有構造類com.install4j.api.context.OverwriteMode發現

Exception: 

java.lang.NoSuchMethodException: No constructor for class com.install4j.api.context.OverwriteMode found 
    at com.install4j.runtime.xmldecode.Handler.endElement(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.endElement(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.element(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.element(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.element(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.element(Unknown Source) 
    at com.install4j.runtime.xmldecode.SaxOutputter.output(Unknown Source) 
    at com.install4j.runtime.xmldecode.XMLDecoder.initialize(Unknown Source) 
    at com.install4j.runtime.xmldecode.XMLDecoder.readObject(Unknown Source) 
    at com.install4j.runtime.installer.config.AbstractBeanConfig.instantiateBean(Unknown Source) 

...

我該如何解決這個問題。

+1

添加你writtenr –

+0

代碼[你可以下載完整的錯誤文本(https://開頭的車程。 google.com/open?id=0B0Uh_gZUe6RiRFlYdTR1ekdtSEk) –

回答

0

您是否在嘗試調用OverwriteMode的構造函數?

你應該枚舉常量:OverwriteMode.ALWAYSOverwriteMode.NEVER,......(發現他們所有的鏈接頁面上)

相關問題