aspose file tools
The moose likes Beginning Java and the fly likes A problem about JDK tools java or javaw... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "A problem about JDK tools java or javaw... " Watch "A problem about JDK tools java or javaw... " New topic
Author

A problem about JDK tools java or javaw...

Ruigao Tang
Greenhorn

Joined: Jul 26, 2007
Posts: 9
Hi ranchers.
I want to use java.exe or javaw.exe to run a JAR file just like this

java -jar C:\AAA\file.jar

It worked

But it not worked if the folder name is "A A" a space between 2 'A', like

java -jar C:\A A\file.jar

a error: "Unable to access jarfile c:\A"

Is that means we cant use the two commands if there are spaces in folder name?
Thank you!

The JDK's version is 1.6 update 6
[ July 03, 2008: Message edited by: Ruigao Tang ]

SCJP: Certified SCJD: Certified SCEA: One day...
Maneesh Godbole
Saloon Keeper

Joined: Jul 26, 2007
Posts: 8562

You need to run it as java -jar C:\"A A"\file.jar (Notice the quotes around A A)


[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
Ruigao Tang
Greenhorn

Joined: Jul 26, 2007
Posts: 9
Thanks for your advice
But it worked like this

java -jar C:\\"A A\\"\file.jar
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: A problem about JDK tools java or javaw...
 
Similar Threads
how to look for jar file content in linux?
"Fatal exception occurred. Program will exit."
file.jar
Setting java -classpath to the Class-Path: element of an executable jar MANIFEST.MF file
Problem running jar on new Windows 7 install