我实现了屏幕截图功能,目前它只是保存到项目文件中,但如果它保存到特定文件或位置(例如桌面)会很好。
目前:
try {
imageId = random.nextInt(9999);
ImageIO.write(MainGame.image, "png" , new File("Sinecure_" + imageId + ".png/"));
System.out.println("Image Saved as Sinecure_" + imageId);
} catch (IOException e) {
e.printStackTrace();
}