I'm sorta clueless on what else to do with this I know there's
more but I'm not quite sure how to do this. I'm trying to use
JFileChooser
I know I'm supposed to do this:
public void fileChooser()
{
JFileChooser chooser = new JFileChooser();
if(chooser.showOpenDialog(null) ==
JFileChooser.APPROVE_OPTION)
{
selectedFile = chooser.getSelectedFile();
}
but I'm not quite sure how to do the rest where some1 can actually
choose a file on the computer..... :-s could someone please show me
how???