我试图通过Swing创建我的第一个UI页面.在此页面中,我希望浏览一个文件.有人可以帮助我实现这个目标吗?
查看Sun的本教程页面:http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html.
基本实施涉及:
//Create a file chooser final JFileChooser fc = new JFileChooser(); ... //In response to a button click: int returnVal = fc.showOpenDialog(aComponent);
返回值为您提供有关用户是单击"确定"还是"取消"等信息,然后您可以查询文件选择器对象以找出所选文件.