到目前为止,一切都运行良好。我的应用程序库编译得很好。 .jar被创造得很好。然后突然出现了这个错误。我创建了一些像这样的包:
Status.UIComponents
Status.UI
Status.UIFrames
Status.Db
我在View_All
内添加了一个名为Status.UIFrames
的类。行。
再次在'View_All_Items'
中添加了一个名为'Status.UIFrames'
的类。行。
再次在'Status.UIFrames'中添加了一个名为View_Items的类......现在错误来了。
ant -f D:\\PEAS\\#Library\\courier -Dnb.internal.action.name=rebuild clean jar
init:
deps-clean:
Updating property file: D:\PEAS\#Library\courier\build\built-clean.properties
Deleting directory D:\PEAS\#Library\courier\build
clean:
init:
deps-jar:
Created dir: D:\PEAS\#Library\courier\build
Updating property file: D:\PEAS\#Library\courier\build\built-jar.properties
Created dir: D:\PEAS\#Library\courier\build\classes
Created dir: D:\PEAS\#Library\courier\build\empty
Created dir: D:\PEAS\#Library\courier\build\generated-sources\ap-source-output
Compiling 54 source files to D:\PEAS\#Library\courier\build\classes
javac: invalid flag: D:\PEAS\
Usage: javac <options> <source files>
use -help for a list of possible options
D:\PEAS\#Library\courier\nbproject\build-impl.xml:929: The following error occurred while executing this line:
D:\PEAS\#Library\courier\nbproject\build-impl.xml:269: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 0 seconds)
我尝试了什么:
我删除了最后一个类,并创建了另一个具有不同名称的类。一个空白的课。错误保持不变。
我删除了所有的类和包并重新创建了它们。错误保持不变。
重命名所有包。错误保持不变。
我认为课程内部没有错误。因为他们都编译得很好。我注意到包含超过五个类的包会产生错误。任何解决方案?