java – 防止主UI从子线程折叠

我有这个问题

   class FinalUI1 extends javax.swing.JFrame 
     {
       //do something 
          Thread t;
        try {
            t = new Thread(new PcapTool(null));
            t.start();
           } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
           }
       // do something

     }
     class PcapTool extends ApplicationFrame implements Runnable
  {
     //do something
     public void run() {
        Display Graph based on above classes input
         }
   }

有一个主UI窗口,只要用户点击一个按钮,就会在单独的窗口中生成新图表.

问题:我想在用户单击FinalUI1类中的按钮时显示图形,但是当我关闭任何生成的图形时,整个UI崩溃,一切都消失了.我想保留主UI并关闭用户选择关闭的特定图表.我想到了,因为UI在主线程上,我可以在新线程中生成新图形,如果我这样做并关闭其中一个子线程,主UI应该仍在运行.你能帮我解决这个问题吗?

非常感谢你.

附加代码:

    public class PcapTool extends ApplicationFrame { 
public static String domainChoice, domainConcatenate="";;
public static XYSeries series1;
public static XYSeriesCollection dataset=null;
public static XYSeries series2;
public static PacketInfo resPacketObject;
public static Hashtable<String, Object> DomainNameTable=new Hashtable<String, Object>();
public static String[] hasArray=new String[100];
public static JFreeChart chart;
public static String customTitle = " ";
public  ArrayList<Double> dataNumberList=new ArrayList<Double>(); 
public static String[]dataUsage;
public static String[]timeArrival,txRxTag;
private static final long serialVersionUID = 1L;
public PcapTool(final String title) throws InterruptedException {
    super(title);
    IntervalXYDataset dataset = createDataset();
    JFreeChart chart = createChart(dataset);
    final ChartPanel chartPanel = new ChartPanel(chart);
    chartPanel.setPreferredSize(new java.awt.Dimension(2000,1000));//(width,height) of display
    setContentPane(chartPanel);
}
public IntervalXYDataset createDataset() throws InterruptedException {
      // add Series 1 and Series 2
    }
    dataset= new XYSeriesCollection(series1);
    dataset.addSeries(series2);
    dataset.setIntervalWidth(0.05);//set width here
    return dataset;
}
private JFreeChart createChart(IntervalXYDataset dataset) {
    final JFreeChart chart = ChartFactory.createXYBarChart(
            "Pcap Analysis Tool\n Domain: "+domainConcatenate,
            "Time (Seconds)", 
            false,
            "Data Usage (bytes)", 
            dataset,
            PlotOrientation.VERTICAL,
            true,
            true,
            false
            );
    return chart;    
}
public static void main(final String[] args) throws InterruptedException {

    final PcapTool demo = new PcapTool("PCAP Analysis");
    demo.pack();
    RefineryUtilities.centerFrameOnScreen(demo);
    demo.setVisible(true);
    System.out.println("domain: "+dropBoxUserValue);
}

}

最佳答案 我猜这种行为是由于您使用JFrame或类似的东西来显示您的子窗口,并且JFrame的setDefaultCloseOperation属性已设置为JFrame.EXIT_ON_CLOSE,这将导致JVM在任何窗口关闭时退出.

我认为你应该在对话窗口中显示它们,例如JDialog,而不是在JFrame或ApplicationFrame中.另外,我不得不担心你使用线程.所有Swing代码都需要在一个线程(EDT)上调用,而不是像上面那样在单独的线程上调用.当然,在后台线程中进行长时间运行的计算,但是图表和任何其他Swing调用的实际显示必须在EDT上(除非您确定这些调用是线程安全的).另一个选项是将JFrame setDefaultCloseOperation设置为JFrame.DISPOSE_ON_CLOSE,但这些人仍然表现为对话框,在我看来,应该显示为对话框,JDialogs.

如果这没有帮助,请考虑发布一个非常小的可编辑且可运行的最小示例,没有与手头问题无关的无关代码,这证明了您的问题,即SSCCE.

点赞