Is there any command for me to use where it returns if my java is 32 or 64 bits in the Java language?
Something like System.getProperty("java.version");
Something like that only comes back to me if Java is 32 or 64 bits.
Is there any command for me to use where it returns if my java is 32 or 64 bits in the Java language?
Something like System.getProperty("java.version");
Something like that only comes back to me if Java is 32 or 64 bits.
System.getProperty("sun.arch.data.model")
or indirectly
System.getProperty("os.arch");