I need to mention a path variable in eclipse Helios on Mac Os.

The path I am specifying contains whitespace in it.
Example:

user/folder/android sdk

I have tried following ways which failed in the end:
Specifying path in quotes both single & double.

Can anyone suggest way to solve this.

link|improve this question

0% accept rate
feedback

1 Answer

There shouldn't be any issue with classpath including spaces, on Mac Os or any other Os:

Add your space through the Gui (Java Build Path)

Java Build Path Gui

, and you will get a .classpath file with:

<classpathentry kind="lib" path="my libs/apache_cli/lib/commons-cli-1.0.jar" 
                           sourcepath="my libs/apache_cli/src/commons-cli-src.zip"/>

The quotes take care of any spaces in the paths.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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