10
Is there a command for me to use where to return if my java is 32 or 64 bits, in the Java language?
Something like System.getProperty("java.version");
Something that is like that only return me if Java is 32 or 64 bits.
10
Is there a command for me to use where to return if my java is 32 or 64 bits, in the Java language?
Something like System.getProperty("java.version");
Something that is like that only return me if Java is 32 or 64 bits.
11
System.getProperty("sun.arch.data.model")
or indirectly
System.getProperty("os.arch");
Thank you very much, Perfect!!
Browser other questions tagged java
You are not signed in. Login or sign up in order to post.
Take a look at [tour]. You can accept an answer if it solved your problem. You can vote on every post on the site as well. Did any help you more? You need something to be improved?
– Maniero