I am using Eclipse,I wanted to create a new File in my Web Project .
My Eclipse Location is
Path:"H:\\eclipse\\New folder\\Testing_Project\\WebContent\\";
File:1.jsp(New File to be created)
File create=new File(Path,File);
create.createNewFile();
But it is saying that File is not created .It is saying the error as "(The filename, directory name, or volume label syntax is incorrect)"
Is there any way i can create a File in Java.