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

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -