У меня следующая проблема. Когда я запускаю проект из среды IDE NetBeans, все в порядке. Но когда я пытаюсь построить проект, у меня есть исключение:
Compiling 2 source files to D:\JAVA\Projects\streamer\build\classes
An exception has occurred in the compiler (1.7.0-ea). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport) after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report. Thank you.
java.lang.NullPointerException
at java.lang.String.startsWith(String.java:1433)
at java.lang.String.startsWith(String.java:1462)
at com.sun.tools.javac.file.SymbolArchive.addZipEntry(SymbolArchive.java:49)
at com.sun.tools.javac.file.ZipArchive.<init>(ZipArchive.java:63)
at com.sun.tools.javac.file.SymbolArchive.<init>(SymbolArchive.java:41)
............
D:\JAVA\Projects\streamer\nbproject\build-impl.xml:603: The following error occurred while executing this line:
D:\JAVA\Projects\streamer\nbproject\build-impl.xml:245: Compile failed; see the compiler error output for details.
Я не использую метод String.startsWith, но я использую String.indexOf в одном месте:
int lastIndex = nodeName.indexOf("date",0);
if (lastIndex != -1 || nodeName.equals("birthday")) {
txt_val = getHash(txt_val,Boolean.TRUE);
} else {
txt_val = getHash(txt_val,Boolean.FALSE);
}
имя_узла не равно нулю. И я не мог понять, где ошибка: (