博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java应用程序实现屏幕的"拍照"
阅读量:6243 次
发布时间:2019-06-22

本文共 3391 字,大约阅读时间需要 11 分钟。

有时候,在Java应用程序开发中,如:远程监控或远程教学,常常需要对计算机的屏幕进行截取,由于屏幕截取是比较接近操作系统的操作,在Windows操作系统下,该操作几乎成了VC、VB等的专利,事实上,使用Java JDK1.4 的Robot对象,来完成"屏幕截取操作,更加简单。Java JDK1.4 的Robot对象,该对象可以完成对"屏幕"像素的拷贝,完成屏幕图像截取操作。Java应用程序中可以直接调用此对象,完成对特定应用程序的屏幕截取,如果将此功能配合网络,便可以轻而易举地实现远程服务器屏幕的监视。本文向大家介绍如何用Java构建屏幕"照相机"并实现远程服务器屏幕的监视,并给出了相应的Java源代码。

1 package Camera; 2 import java.awt.image.BufferedImage; 3 import java.io.*; 4 import javax.imageio.*; 5 import java.awt.*; 6 /******************************************************************* 7  * 该JavaBean可以直接在其他Java应用程序中调用,实现屏幕的"拍照" 8  * This JavaBean is used to snapshot the GUI in a  9  * Java application! You can embeded10  * it in to your java application source code, and us11  * it to snapshot the right GUI of the application12  * @see javax.ImageIO13  * @author Visec·Dana14  * @version 1.015  *****************************************************/16 public class GuiCamera {17     private String fileName; //文件的前缀18     private String defaultName = "GuiCamera";19     static int serialNum=0;20     private String imageFormat; //图像文件的格式21     private String defaultImageFormat="png";22     Dimension d=Toolkit.getDefaultToolkit().getScreenSize();23 24     /****************************************************************25      * 默认的文件前缀为GuiCamera,文件格式为PNG格式26      * The default construct will use the default 27      * Image file surname "GuiCamera", 28      * and default image format "png"29      ****************************************************************/30     public GuiCamera() {31         fileName = defaultName;32         imageFormat=defaultImageFormat;33 34     }35     /****************************************************************36      * @param s the surname of the snapshot file37      * @param format the format of the  image file, 38      * it can be "jpg" or "png"39      * 本构造支持JPG和PNG文件的存储40      ****************************************************************/41     public GuiCamera(String s,String format){42         fileName = s;43         imageFormat=format;44     }45     /****************************************************************46      * 对屏幕进行拍照47      * snapShot the Gui once48      ****************************************************************/49     public void snapShot(){50         try {51             //拷贝屏幕到一个BufferedImage对象screenshot52             BufferedImage screenshot = (new Robot()).createScreenCapture(new Rectangle(0, 0, (int) d.getWidth(), (int) d.getHeight()));53             //根据文件前缀变量和文件格式变量,自动生成文件名54             String name=fileName+String.valueOf(serialNum)+"."+imageFormat;55             File f = new File(name);56             System.out.print("Save File "+name);57             //将screenshot对象写入图像文件58             ImageIO.write(screenshot, imageFormat, f);59             System.out.print("..Finished!\n");60         }61         catch (Exception ex) {62             System.out.println(ex);63         }64     }65 }

调用测试案例

1 package Camera; 2 import java.text.SimpleDateFormat; 3 import java.util.Date; 4 /*** 5  * 实现屏幕的"拍照" 6  * @author Visec·Dana 7  */ 8 public class Client{ 9     public static void main(String[] args) {10         Date date=new Date();11         SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd-HH-mm");12         GuiCamera cam= new GuiCamera("F://"+df.format(date), "png"); 13         cam.snapShot();14     }15 }

数据记录生成图片

 

 

转载于:https://www.cnblogs.com/visec479/p/3842970.html

你可能感兴趣的文章
Window下Eclipse+Tomcat远程调试
查看>>
夜间模式的开启与关闭,父模板的制作
查看>>
2016/4/19
查看>>
计算一元二次方程的根
查看>>
队列和栈
查看>>
升级了U3D引擎一下,苦逼了...
查看>>
Javascript中封装window.open解决不兼容问题
查看>>
100%会用到的angularjs的知识点【新手可mark】
查看>>
Alinq学习日志
查看>>
根据框架的dtd或xsd生成xml文件
查看>>
LeetCode Notes_#3 Longest Substring Without Repeating Characters
查看>>
MVP MVVM MVC
查看>>
[BZOJ3684]大朋友和多叉树
查看>>
【Linux 驱动】第九章 与硬件通信
查看>>
方便记忆的电话号码
查看>>
OSGMFC
查看>>
JQuery开发的lightBox控件实例
查看>>
linux 文件查找,which,whereis,locate,find
查看>>
c c++ 宏定义中#, ##, #@的含义
查看>>
设计模式
查看>>