FileName with a whitespace in command line argument
I have a problem regarding reading a file with a whitespace using a command line argument.
Ex.
I have a file named MY FILE.txt then i will require it as a command line argument:
java Test MY FILE.txt
Java will throw an error because he will interpret MY as the file name not as MY FILE.txt....
So how can i let java know that the space in between is part of the filename?
PLEASE HELP.

