我有一个程序可以在按下 JButton 时截取屏幕截图,但由于某种原因,它不会显示在我的 JFrame 中。我知道该方法有效,因为 JFrame 像我告诉它的那样重新调整大小,但由于某种原因它不会显示镜头。
代码
public class main implements ActionListener{
public static Font f = new Font(Font.DIALOG, Font.BOLD, 25);
static JButton button = new JButton("Press For A Screen Shot!");
static JFrame frame = new JFrame("Snipping Tool+");
static JLabel label;
static Graphics2D g2d;
static JPanel panel;
BufferedImage shot;
public main(){
frame.setSize(400, 350);
frame.setResizable(false);
button.setFont(f);
button.setBackground(Color.BLACK);
button.setForeground(Color.white);
button.addActionListener(new ActionListener() {
我的行动就在这里。
public void actionPerformed(ActionEvent e)
{
System.out.println("sh");
try {
shot = new Robot().createScreenCapture(new
Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
} catch (HeadlessException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (AWTException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
frame.setSize(screenSize);
Image ii = (BufferedImage) shot;
g2d.drawImage(shot, Image.SCALE_AREA_AVERAGING, 0, 0, 0, null);
}
});
ImageIcon image = new ImageIcon("res//images//SnippingTool.png");
label = new JLabel(image);
frame.add(button, BorderLayout.NORTH);
frame.add(label, BorderLayout.SOUTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
public static void main(String args[]){
main m = new main();
}
这没有任何作用。
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
}
}