Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
83 views
in Technique[技术] by (71.8m points)

watij - How to specify to the Java VM the -d32 parameter

I recently downloaded watij. on their website they say

Note: If you are running on a Mac you must add -d32 to your Java VM parameters.

I was wondering what the steps are to do this since they do not specify.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

adding -d32 to vm parameters means, when you run your app:

javac HelloWorld.java
java HelloWorld

Instead you do this:

javac HelloWorld.java
java -d32 HelloWorld

It specifies that the program will run in 32bit architecture.

To set JVM arguments from Eclipse, do this:
1. Right click on the class you want to run.
2. Click run configurations
3. Go to arguments tab and write "-d32" under VM arguments text box.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...