import javax.swing.*;
import java.io.*;
public class jFrameChooser{
public static void main(String args[]){
JFrame frame=new JFrame();
File file=new File("jacky.txt");
JFileChooser jfc=new JFileChooser(file);
jfc.setDialogType(JFileChooser.OPEN_DIALOG);
jfc.showDialog(frame,"pp");
frame.setSize(200,100);
frame.setVisible(true);
}
上面是一个对话框,如果我想打开我选择的文件,再该怎么做呢?