Running 32 bit *.jar file on x64

I have a program installer in the form of a * .jar file. It requires Java 32 bit.
At the moment I have Java 64 bit installed.
How can I run this installer by forcing the use of Java 32 bit and then how to run the program that has been installed?
Of course, the command as below indicates that Java 32 bit is not installed.
And how to add 32 bit to Java system?
At the moment I have Java 64 bit installed.
- Code: Select all
[maciek@Piotr TMP]$ java -version
openjdk version "11.0.15" 2022-04-19 LTS
OpenJDK Runtime Environment 18.9 (build 11.0.15+10-LTS)
OpenJDK 64-Bit Server VM 18.9 (build 11.0.15+10-LTS, mixed mode, sharing)
How can I run this installer by forcing the use of Java 32 bit and then how to run the program that has been installed?
Of course, the command as below indicates that Java 32 bit is not installed.
- Code: Select all
java -jar ./RomRaider0.9.4MAY232022-linux.jar
And how to add 32 bit to Java system?