public class ShowFileDialog extends JFrame {

public String Show()
{
  this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  FileDialog fd = new FileDialog(this, "选择文件存放路径", FileDialog.LOAD);
  fd.show();
  String filename = fd.getDirectory() + fd.getFile();
  return filename; }}就是着段代码,怎么解决啊?对话框一直显示在其他页面的后面,能够设置成显示在最顶层吗?