Hi,
I need to run my current java code, which uses an @override expression on a computer with an older Java version (that doesnt seem able to use @override...).
Printable View
Hi,
I need to run my current java code, which uses an @override expression on a computer with an older Java version (that doesnt seem able to use @override...).
Hi,Quote:
@Override is a compile time annotation; compile your class on the computer that runs the newer compiler and specifiy the target JVM with the -target flag for the compiler.
kind regards,
Jos
How can I compile a class? And how do I specify the target JVM with a target flag?
Thanks