I have the following code which handles files upload on the server. But how to save the file to a specific location on the server
import gwtupload.server
In your java application, you can create file with giving specific path.
Like; "new File("c:/files/filename)" etc.
See Java Documents to learn about New IO package's Files class' createFile method.