window 弹出文件夹窗口 的问题

我想要的效果是 得到一个 File 的路径, 如何用 Java 弹出window的文件夹窗口 ,里面包含了这个File ,请问这个该怎么实现

[code="java"]
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
Process child=Runtime.getRuntime().exec("cmd /c start 填写你的绝对路径");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

[/code]

[code="java"]
JFileChooser choose = new JFileChooser();
choose.showOpenDialog(Component parent)
[/code]

文件选择器控件,放在某个事件监听类里面

[code="java"]
File file = choose.getSelectedFile();
file.getPath();
[/code]