I want to browse & upload file to a folder.How can i do that in java.I can browse for a file.This is the code that i used....
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(null);
File file = chooser.getSelectedFile();
String filename = file.getName();
Plz tell me how to upload a file to a folder???