How to configure Eclipse to compile using Oracle javac 1.7.0_09?

前端 未结 2 1311
孤街浪徒
孤街浪徒 2020-12-11 04:32

I am trying to compile following piece of code:

public class DuplicateMainExample {
    public static void main(Stri         


        
2条回答
  •  無奈伤痛
    2020-12-11 05:16

    Eclipse will never use javac. Its ability to do dynamic highlighting is intimately connected with its own compiler, which has special abilities to operate incrementally.

    If you want an IDE that uses javac, you might investigate intellij.

提交回复
热议问题