If my Java Class is in: `
package org.gamehost.flyingame.BookManagementServlet.ModelClass
aka:
BookManagementSoftwareServlet/org/gamehost/flyingame/BookManagementServlet/ModelClass
and in that class, if I want to return a file from a directory, say an html file, after doing this:
File newFile = new File("HTMLFile.html");
Assuming the above code will create a new file, will it create it in the
BookManagementSoftwareServlet
directory or, will it create it in this directory:
BookManagementSoftwareServlet/org/gamehost/flyingame/BookManagementServlet/ModelClass
if no, should I have to then go the hard way by doing this:
C://Workspace/BookManagementSoftwareServlet/org/gamehost/flyingame/BookManagementServlet/ModelClass