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

Just downloaded the latest version of Ant and installed at:

C:\apache-ant-1.8.4

I added the following to the Env Path variable:

...;C:\apache-ant-1.8.4\bin

When I open a terminal window and type:

ant -version

I get:

Files\Java\jdk1.7.0_07"" was unexpected at this time.

In System variables I have the variable JAVA_HOME set to:

"C:\Program Files\Java\jdk1.7.0_07"

so it appears that "ant -version" is struggling to read the space in JAVA_HOME even though it is in quotes.

I see an alternative post on this topic:

Ant and Eclipse

but it doesn't tackle this specific point.

Has anyone else encountered this problem and know the answer?

share|improve this question
please try to improve your accept rate – Jayan Jan 21 at 4:53

2 Answers

Hmmm, it should be fine with quotes. Could be something else in your path. If all else fails you could revert to dos 8.3 notation.

dir /x

Which gives

13/01/2013  03:57 PM    <DIR>          PROGRA~1     Program Files
13/01/2013  03:57 PM    <DIR>          PROGRA~2     Program Files (x86)
share|improve this answer

My guess is current definition of JAVA_HOME has unwanted double quotes. Show output of set JAVA_HOME on command window. It should not have any double quotes.

Please start command prompt. Set the JAVA_HOME again

set JAVA_HOME="C:\Program Files\Java\jdk1.7.0_07"
share|improve this answer

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.