P
pinto
I have a small java Problem. In my project, some .java files are
created and placed in the destination directory specificied by the
user. In those .java files we declare the package name.It works when we
the destination directory specified by the user does not have a space
but it does not work when there is space in the destination directory.
For eg.
package new folder.AppSingleton // does not work
package new_folder.AppSingleton //it works
How can i eliminate this problem. I want "javac" not to give an error
when i give a space in the package name. Please suggest some ideas!!!!!
created and placed in the destination directory specificied by the
user. In those .java files we declare the package name.It works when we
the destination directory specified by the user does not have a space
but it does not work when there is space in the destination directory.
For eg.
package new folder.AppSingleton // does not work
package new_folder.AppSingleton //it works
How can i eliminate this problem. I want "javac" not to give an error
when i give a space in the package name. Please suggest some ideas!!!!!