标签:style blog color io 使用 java ar for 文件
Java标准API中有个Robot类,该类可以实现屏幕截图,模拟鼠标键盘操作这些功能。这里只展示其屏幕截图。
截图的关键方法createScreenCapture(Rectangle rect) ,该方法需要一个Rectangle对象,Rectangle就是定义屏幕的一块矩形区域,构造Rectangle也相当容易:
1 /** 2 * 指定屏幕区域截图,返回截图的BufferedImage对象 3 * @param x 4 * @param y 5 * @param width 6 * @param height 7 * @return 8 */ 9 public BufferedImage getScreenShot(int x, int y, int width, int height) { 10 BufferedImage bfImage = null; 11 try { 12 Robot robot = new Robot(); 13 bfImage = robot.createScreenCapture(new Rectangle(x, y, width, height)); 14 } catch (AWTException e) { 15 e.printStackTrace(); 16 } 17 return bfImage; 18 }
如果需要把截图保持为文件,使用ImageIO.write(RenderedImage im, String formatName, File output) ,示例代码:
1 /** 2 * 指定屏幕区域截图,保存到指定目录 3 * @param x 4 * @param y 5 * @param width 6 * @param height 7 * @param savePath - 文件保存路径 8 * @param fileName - 文件保存名称 9 * @param format - 文件格式 10 */ 11 public void screenShotAsFile(int x, int y, int width, int height, String savePath, String fileName, String format) { 12 try { 13 Robot robot = new Robot(); 14 BufferedImage bfImage = robot.createScreenCapture(new Rectangle(x, y, width, height)); 15 File path = new File(savePath); 16 File file = new File(path, fileName+ "." + format); 17 ImageIO.write(bfImage, format, file); 18 } catch (AWTException e) { 19 e.printStackTrace(); 20 } catch (IOException e) { 21 e.printStackTrace(); 22 } 23 }
标签:style blog color io 使用 java ar for 文件
原文地址:http://www.cnblogs.com/jebysun/p/3969356.html