下記のようなプログラムで、プッシュボタンを押すと、新しいフレームを生成後に
そのフレームを含むスクリーンショットを取りたいのですが、
その画像に、もとのプッシュボタンを含むフレームは含まれるのですが、
新しいフレームが写っていません。
ちゃんとフレームを生成してから、画面キャプチャーを行っているつもりなのですが、、、
これはどういうことが原因で起こるのでしょうか。
また、解決方法をご存じの方いらっしゃいましたら、ご教示のほどよろしくお願いします。
JAVA
1 2public class MainFrame extends JFrame { 3 4 public static void main (String[] args) { 5 new MainFrame(); 6 } 7 8 MainFrame(){ 9 10 JButton b = new JButton("push"); 11 b.addActionListener(new ActionListener(){ 12 @SuppressWarnings("null") 13 public void actionPerformed(ActionEvent e){ 14 JFrame f = new JFrame(); 15 f.setVisible(true); 16 f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 17 f.setBounds(100, 0, 100, 100); 18 19 Robot robot; 20 try { 21 robot = new Robot(); 22 BufferedImage img_screen = robot.createScreenCapture(new Rectangle(0,0,200,100)); 23 24 } catch (AWTException e1) { 25 // TODO Auto-generated catch block 26 e1.printStackTrace(); 27 } 28 29 } 30 }); 31 add(b); 32 setVisible(true); 33 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 34 setBounds(0, 0, 100, 100); 35 36 37 } 38 39} 40
あなたの回答
tips
プレビュー