1

I have one JFrame that's not actively rendered, a la standard basic Swing applications, which I need to launch another JFrame when a button is clicked. The second JFrame is actively rendered using Swing's BufferStrategy, and runs on its own independently - however, when I call it from the other JFrame's ActionPerformed both JFrames freeze.

I know there are complications in using Swing to accomplish this kind of behavior - how can I get around them?

zaczap
  • 1,386
  • 1
  • 14
  • 20
  • Could you elaborate on the notion of "(not) actively rendered?" Is this related to `BufferStrategy`, an AWT `Component` feature? – trashgod Apr 17 '11 at 21:57

1 Answers1

6

You might be able to adapt this Swing based Launcher that uses ProcessBuilder to run programs in a separate JVM.

image

package gui;

import java.awt.EventQueue;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

/**
 * @see http://stackoverflow.com/a/5696404/230513
 */
public class Launcher extends JPanel implements Runnable {

    private final JLabel label = new JLabel();
    private final JButton launch = new JButton();
    ProcessBuilder pb = new ProcessBuilder(
        "java", "-cp", "build/classes", "gui.Launcher$DialogTest");
    private volatile Process proc;

    public static void main(String[] args) {
        EventQueue.invokeLater(new Launcher()::createGUI);
    }

    private void createGUI() {
        final JFrame frame = new JFrame();
        frame.setLayout(new GridLayout(0, 1));
        frame.add(new Launcher());
        frame.add(new Launcher());
        frame.add(new Launcher());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
    }

    public Launcher() {
        this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
        this.setBorder(BorderFactory.createEmptyBorder(8, 8, 8, 8));
        launch.setAlignmentX(0.5f);
        label.setAlignmentX(0.5f);
        launch.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                if (proc == null) {
                    launch.setText("Terminate");
                    label.setText("Status: run");
                    new Thread(Launcher.this).start();
                } else {
                    proc.destroy();
                    reset();
                }
            }
        });
        this.add(launch);
        this.add(label);
        reset();
    }

    @Override
    public void run() {
        try {
            proc = pb.start();
            proc.waitFor();
        } catch (IOException | InterruptedException ex) {
            ex.printStackTrace(System.err);
        }
        EventQueue.invokeLater(this::reset);
    }

    private void reset() {
        proc = null;
        launch.setText("Launch");
        label.setText("Status: idle");
    }

    private static class DialogTest {

        public static void main(String[] args) {
            EventQueue.invokeLater(() -> {
                JOptionPane.showMessageDialog(null, "Running",
                    "Test", JOptionPane.INFORMATION_MESSAGE);
                System.exit(0);
            });
        }
    }
}

Updated to Java 8 at the author's request.

trashgod
  • 203,806
  • 29
  • 246
  • 1,045
  • Why do you mention (the IMO abominable) `exec()` when your example at comp.lang.java.programmer uses (the 'ominable') `ProcessBuilder`? – Andrew Thompson Apr 17 '11 at 21:17
  • @Andrew Thompson: I am [yeti](http://en.wikipedia.org/wiki/Yeti) again in your debt. :-) Updated. – trashgod Apr 17 '11 at 21:30
  • Excellent. Loved the 'yeti' reference, BTW. :-) – Andrew Thompson Apr 17 '11 at 21:32
  • @Andrew Thompson: Sorry, I couldn't resist. Interestingly, `exec()` is also [abhominable](http://dictionary.reference.com/browse/abhominable), at least relative to `ProcessBuilder`. – trashgod Apr 17 '11 at 21:47