如何在点击JOPtionPane按钮后控制窗口会发生什么?我正在尝试实现简单的文件选择器。在我的框架中,我有3个按钮(确定,取消,浏览)。浏览按钮打开文件搜索窗口,拾取文件后应返回主框架。单击“确定”将打开包含文件内容的框架。现在,porblem看起来就是这样。使用下面的代码,我可以选择文件,但之后会直接创建一个新框架,并且带有按钮的框架会消失:
alt text http://img20.imageshack.us/img20/7614/windowh.png
alt text http://img267.imageshack.us/img267/1953/emptywindow.png
import java.io.File;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.awt.*;
import javax.swing.*;
import java.io.*;
public class Main {
public static void main(String args[]) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
show("Window");
}
});
}
public static void show(String frame_name){
JFrame frame = new JFrame(frame_name);
frame.setPreferredSize(new Dimension(450, 300));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel top = new JPanel();
top.setLayout(new BoxLayout(top, BoxLayout.Y_AXIS));
JFileChooser fc = new JFileChooser(new File("."));
JPanel creator = new JPanel();
creator.setLayout(new BoxLayout(creator, BoxLayout.Y_AXIS));
creator.add(top);
String[] buttons = {"OK", "Cancel", "Browse"};
int rc = JOptionPane.showOptionDialog(
null,
creator,
frame_name,
JOptionPane.DEFAULT_OPTION,
JOptionPane.PLAIN_MESSAGE,
null,
buttons,
buttons[0]
);
String approveButt = "";
switch(rc){
case 0:
break;
case 1:
break;
case 2:
approveButt = buttons[rc];
int retVal = fc.showDialog(null, approveButt);
if (retVal == JFileChooser.APPROVE_OPTION)
System.out.println(approveButt + " " + fc.getSelectedFile());
break;
}
frame.pack();
frame.setVisible(true);
}
}
使用第二个代码我可以返回到我的菜单,但是我无法弹出这个新框架,它出现在第一个代码中。怎么控制这个?我错过了什么?
public class Main {
public static void main(String args[]) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
show("Window");
}
});
}
public static void show(String frame_name){
JFrame frame = new JFrame(frame_name);
frame.setPreferredSize(new Dimension(450, 300));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel top = new JPanel();
top.setLayout(new BoxLayout(top, BoxLayout.Y_AXIS));
JFileChooser fc = new JFileChooser(new File("."));
JPanel creator = new JPanel();
creator.setLayout(new BoxLayout(creator, BoxLayout.Y_AXIS));
creator.add(top);
String[] buttons = {"OK", "Cancel", "Browse"};
String approveButt = "";
Plane m = null;
int rc = -1;
while (rc != 0) {
rc = JOptionPane.showOptionDialog(
null,
creator,
frame_name,
JOptionPane.DEFAULT_OPTION,
JOptionPane.PLAIN_MESSAGE,
null,
buttons,
buttons[0]
);
switch (rc) {
case 0:
m = new Plane();
case 1:
System.exit(0);
case 2:
approveButt = buttons[rc];
int retVal = fc.showDialog(null, approveButt);
if (retVal == JFileChooser.APPROVE_OPTION)
System.out.println(approveButt + " " + fc.getSelectedFile());
break;
default:
break;
}
}
addComponents(frame.getContentPane(), m);
frame.pack();
frame.setVisible(true);
}
private static void addComponents(Container c, Plane e) {
c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));
c.add(e);
}
}
class Plane extends JPanel {
public Plane(){
}
@Override
public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, 400, 250);
}
}
答案 0 :(得分:2)
使用您的代码。试图让它变得简单明了:
import java.awt.*;
import javax.swing.*;
import java.io.*;
public class Main {
public static void main(String args[]) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
show("Window");
}
});
}
public static void show(String frame_name){
JFrame frame = new JFrame(frame_name);
frame.setPreferredSize(new Dimension(450, 300));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel top = new JPanel();
top.setLayout(new BoxLayout(top, BoxLayout.Y_AXIS));
JPanel creator = new JPanel();
creator.setLayout(new BoxLayout(creator, BoxLayout.Y_AXIS));
creator.add(top);
JFileChooser fc = new JFileChooser(new File("."));
String[] buttons = {"OK", "Cancel", "Browse"};
int rc=-1;
do {
rc = JOptionPane.showOptionDialog(
null,
creator,
frame_name,
JOptionPane.DEFAULT_OPTION,
JOptionPane.PLAIN_MESSAGE,
null,
buttons,
buttons[0]
);
if( rc == 1){
System.exit(0);
break;
}
else if(rc == 2){
int retVal = fc.showDialog(null, "Test");
if (retVal == JFileChooser.APPROVE_OPTION)
System.out.println("File choose" + fc.getSelectedFile());
}
} while (rc != 0);
if( rc == 0){
frame.setVisible(true);
frame.pack();
}
}
}
答案 1 :(得分:0)
您可以将浏览按钮显示为FileDialog
,如example所示。
答案 2 :(得分:0)
使用下面的代码,我可以选择文件 但直接在那之后是一个新的框架 创建,我的框架与按钮 消失:
是的,因为只要您单击JOptionPane上的按钮,就会关闭选项窗格。我真的不明白你想要做什么,所以我无法提出建议。
但是,一般来说,程序的设计是错误的。您不应该在创建GUI的方法中创建和显示选项窗格。执行此代码后,用户将永远无法选择其他文件,因为无法重新显示选项窗格。
所以也许您需要使用“选择文件”之类的按钮创建JFrame。然后,您将向此按钮添加一个简单的ActionListener,以显示当前选项窗格。那就是你应该用永久的JFrame开始显示你的应用程序。然后使用菜单和菜单项来选择文件。这是大多数应用程序的工作方式在“文件”菜单下,您通常有一个“打开”菜单项。单击“打开”将弹出一个包含所有打开选项的对话框。然后,当选择文件时,您将在主JFrame中显示该文件的内容。