Change JRE in NetBeans project

前端 未结 3 1414
夕颜
夕颜 2020-12-01 23:50

I have a NetBeans project which is using the JRE 1.4 environment which means I can\'t use generics.

How can I change the project to use 1.6 (?) so I can use generics

3条回答
  •  盖世英雄少女心
    2020-12-02 00:30

    • In the Project tab, Right Click on the Project and select Properties.In the Library category select Java Platform JDK 1.6.
    • Then, in the Source category select Source/Binary Format JDK6.
    • This assumes that you installed JDK 1.6 and NetBeans knows about this.
    • JDK 1.6 must be known to NetBeans as a Java Platform.
    • From the menu select Tools->Java Platform Manager.
    • If JDK 1.6 is not in the list you can add it there.

提交回复
热议问题