java里怎样弹出文件夹窗口,要我打开本地磁盘一样的效果。
比如我把一个文件放在D:/file里面,我要做到在运行java程序时自动弹出windows资源管理器的D:/file路径下的文件窗口,然后我可以像打开本地磁盘一样的去操作...
比如我把一个文件放在D:/file里面,我要做到在运行java程序时自动弹出windows资源管理器的D:/file路径下的文件窗口,然后我可以像打开本地磁盘一样的去操作里面的文件。
展开
展开全部
import javax.swing.*;
public class FileChooser {
public static void main(String[] args) {
JFrame frame = new JFrame("chooser");
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(frame);
if (returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: "
+ chooser.getSelectedFile().getName());
}
}
}
public class FileChooser {
public static void main(String[] args) {
JFrame frame = new JFrame("chooser");
JFileChooser chooser = new JFileChooser();
int returnVal = chooser.showOpenDialog(frame);
if (returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: "
+ chooser.getSelectedFile().getName());
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询