Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to specify some JVM arguments when calling a jar file like so:

java -jar filename.jar

I assumed I did it like so:

java -Xms256m -Xmx512m -Djava.awt.headless=true jar filename.jar

But this doesn't seem to work. What am I doing wrong?

share|improve this question

2 Answers

up vote 3 down vote accepted

Do it like:

java -Xms256m -Xmx512m -Djava.awt.headless=true -jar filename.jar
share|improve this answer
Thanks. This doesn't seem to work, so perhaps I have another issue. – Dominic Bou-Samra May 4 '11 at 23:52
@Dominic Bou-Samra How are you testing that? – bacchus May 4 '11 at 23:53
1  
@Dominic Bou-Samra You can try to use JConsole to test the memory sizes of the Heap. – bacchus May 5 '11 at 0:01
If you are not familiar with JCOncole, here is a good link about it. I hope it helps. – bacchus May 5 '11 at 0:22
Thanks! Got it sorted. Thanks for the JConsole tip. Worked well – Dominic Bou-Samra May 5 '11 at 1:53

Don't put a space between the -D and java.awt.headless=true.

It should be -Djava.awt.headless=true.

share|improve this answer
Suggest this answer be deleted, there's no space in the question... – einpoklum Feb 4 at 15:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.