javac - Set Java compiler compliance level -
i need compile java program on command line, , trying set compiler level lower 1 (1.6). tried didn't work:
javac -1.6 hello.java
use -source
, -target
options:
javac -target 1.6 -source 1.6 hello.java
Comments
Post a Comment