2

我目前正在开发 JavaFX 应用程序。我以前使用过 Netbeans 7.4,但现在我切换到 Netbeans 8.0.2。使用新 IDE 运行我的项目后,出现错误提示:

C:\projects\client\QueueBoard\nbproject\build-impl.xml:87: The J2SE Platform is not correctly set up.
Your active platform is: default_platform, but the corresponding property "platforms.default_platform.home" is not found in the project's properties files. 
Either open the project in the IDE and setup the Platform with the same name or add it manually.
For example like this:
ant -Duser.properties.file=<path_to_property_file> jar (where you put the property "platforms.default_platform.home" in a .properties file)
or ant -Dplatforms.default_platform.home=<path_to_JDK_home> jar (where no properties file is used)
BUILD FAILED (total time: 0 seconds)

你如何解决这个问题?

4

1 回答 1

0

解决此问题的最简单方法是:

  1. 在 NetBeans 中打开项目
  2. 打开此项目的项目设置
  3. 检查(也许更正/修复)所有设置(包括平台设置)
  4. 单击设置对话框中的保存/确定
  5. 清洁+构建项目

通过这样做,项目设置文件将更新为当前设置。

干杯!

于 2018-01-24T13:50:30.833 回答