当我尝试编译NetBeans项目时,收到Build successful
消息。
但我尝试清理并构建我收到此消息:
Note: C:\Rech\src\view\class.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
在此之后,我尝试运行JAR文件,但javaw.exe
进程没有响应
答案 0 :(得分:0)
你到底究竟是什么?您使用不推荐使用的API,它不再被认为是安全/更新/有用的,编译器只是告诉您应该使用更新的API(每次不推荐使用某些Java API时,都会有新的API使用其功能)。你总是听编译器,因为编译器总是正确的。如果使用-Xlint:deprecation参数重新编译,则可以查看不推荐使用的API并替换它们。