Using Headless Mode in the Java SE Platform--转
原文地址:
By Artem Ananiev and Alla Redko, June 2006 |
This article explains how to use the headless mode capabilities of the Java Platform, Standard Edition (Java SE, formerly referred to as J2SE).
Headless mode is a system configuration in which the display device, keyboard, or mouse is lacking. Sounds unexpected, but actually you can perform different operations in this mode, even with graphic data.
Where it is applicable? Let's say that your application repeatedly generates a certain image, for example, a graphical authorization code that must be changed every time a user logs in to the system. When creating an image, your application needs neither the display nor the keyboard. Let's assume now that you have a mainframe or dedicated server on your project that has no display device, keyboard, or mouse. The ideal decision is to use this environment's substantial computing power for the visual as well as the nonvisual features. An image that was generated in the headless mode system then can be passed to the headful system for further rendering.
Many methods in the java.awt.Toolkit
and java.awt.GraphicsEnvironment
classes, with the exception of fonts, imaging, and printing, require the availability of a display device, keyboard, and mouse. But some classes, such as Canvas or Panel, can be executed in headless mode. Headless mode support has been available since the J2SE 1.4 platform.
Note: This article will point the reader to documentation for version 6 of the Java SE platform. Any API additions or other enhancements to the Java SE platform specification are subject to review and approval by the JSR 270 Expert Group.
The java.awt.Toolkit
class is an abstract superclass of all actual implementations of the Abstract Window Toolkit (AWT). Subclasses of Toolkit are used to bind the various AWT components to particular native toolkit implementations.
Many components are affected if a display device, keyboard, or mouse is not supported. An appropriate class constructor throws a HeadlessException
:
Button
Checkbox
Choice
Dialog
FileDialog
Frame
Label
List
Menu
MenuBar
MenuItem
PopupMenu
Scrollbar
ScrollPane
TextArea
TextField
Window
Such heavyweight components require a peer at the operating-system level, which cannot be guaranteed on headless machines.
Methods related to Canvas, Panel, and Image components do not need to throw aHeadlessException
because these components can be given empty peers and treated as lightweight components.
The Headless toolkit also binds the Java technology components to the native resources, but it does so when resources don't include a display device or input devices.
The java.awt.GraphicsEnvironment
class is an abstract class that describes the collection ofGraphicsDevice
objects and Font
objects available to a Java technology application on a particular platform. The resources in this GraphicsEnvironment
might be local or on a remote machine. GraphicsDevice
objects can be monitors, printers, or image buffers and are the destination of Graphics2D
drawing methods. Each GraphicsDevice
has manyGraphicsConfiguration
objects associated with it. These objects specify the different configurations in which the GraphicsDevice
can be used.
Table 1 shows the GraphicsEnvironment
methods that check for headless mode support.
Table 1. The Headless Mode Methods
|
|
Method | Description | |||
---|---|---|---|---|
public static boolean isHeadless() |
Tests whether the environment is headless, and therefore does not support a display device, keyboard, or mouse. If this method returns
true , a HeadlessException is thrown from areas of the Toolkit andGraphicsEnvironment classes that depend on a display device, keyboard, or mouse. |
|||
public boolean |
Returns whether this
GraphicsEnvironment can support a display device, keyboard, or mouse. If this method returns true , aHeadlessException is thrown from areas of theGraphicsEnvironment that depend on a display device, keyboard, or mouse. |
|||
Note: The isHeadless()
method checks the specific system property, java.awt.headless
, instead of the system's hardware configuration.
A HeadlessException
is thrown when code that depends on a display device, keyboard, or mouse is called in an environment that does not support any of these. The exception is derived from an UnsupportedOperationException
, which is itself derived from a RuntimeException
.
To use headless mode operations, you must first understand how to check and set up the system properties related to this mode. In addition, you must understand how to create a default toolkit to use the headless implementation of the Toolkit class.
System Properties Setup
To set up headless mode, set the appropriate system property by using the setProperty()
method. This method enables you to set the desired value for the system property that is indicated by the specific key.
System.setProperty("java.awt.headless", "true"); |
In this code, java.awt.headless
is a system property, and true
is a value that is assigned to it.
You can also use the following command line if you plan to run the same application in both a headless and a traditional environment:
java -Djava.awt.headless=true |
Default Toolkit Creation
If a system property named java.awt.headless
is set to true
, then the headless implementation of Toolkit is used. Use the getDefaultToolkit()
method of the Toolkit
class to create an instance of headless toolkit:
Toolkit tk = Toolkit.getDefaultToolkit(); |
Headless Mode Check
To check the availability of headless mode, use the isHeadless()
method of theGraphicsEnvironment
class:
GraphicsEnvironment ge = |
This method checks the java.awt.headless
system property. If this property has a true
value, then a HeadlessException
will be thrown from areas of the Toolkit
andGraphicsEnvironment
classes that are dependent on a display device, keyboard, or mouse.
After setting up headless mode and creating an instance of the headless toolkit, your application can perform the following operations:
- Create lightweight components such as Canvas, Panel, and Swing components, except the top levels
- Obtain information about available fonts, font metrics, and font settings
- Set color for rendering text and graphics
- Create and obtain images and prepare images for rendering
- Print using
java.awt.PrintJob
,java.awt.print.*
, andjavax.print.*
classes - Emit an audio beep
Canvas
The following code represents a blank rectangular area of the screen onto which you can draw lines. To create a new Canvas component, use the Canvas
class.
final Canvas c = new Canvas() |
Fonts
This code shows how to set the font with the Font
class to draw a text string. The Graphics
object is used to render this string.
public void paint(Graphics g) |
Colors
This code shows how to set the color with the specified red, green, and blue values in order to draw a line. The Graphics
object is used to render this line.
public void paint(Graphics g) |
Images
In the following code, the read
method of the javax.imageio.ImageIO
class decodes thegrapefruit.jpg
image file shown in Figure 1 and returns a buffered image.
Image i = null; |
|
This code shows how to print a prepared canvas that enables you to define the printer as the default surface for the paint
method.
PrinterJob pj = PrinterJob.getPrinterJob(); |
Beep
The following code shows how to produce a simple beep sound by using the Toolkit
class's beep
method.
Toolkit tk = Toolkit.getDefaultToolkit(); |
The following HeadlessBasics
example uses all the capabilities described in this article.
To run this example, compile the following code by using the javac
compiler. Copy the image filegrapefruit.jpg
to the directory that contains the HeadlessBasics
class.
import java.awt.*; |
Figure 2 shows the printed output from this example.
|
Also, you can expect to see the following messages:
Headless mode: true |
Note: For demonstration purposes, the original sample code causes the application to throw twojava.awt.HeadlessException
s.
As an alternative, you can forward the standard output messages to a file and print out the file. In this case, use the following command line to run this example:
java HeadlessBasics 2> standard_output.txt |
How can you convert your existing application to execute it in headless mode? The most effective way to perform this conversion is to analyze your source code in order to determine any functionality that is dependent on headless mode. In other words, to implement the same functionality, you have to find those methods and classes that can throw a HeadlessException
and replace them with the methods and classes that are independent of headless mode.
You can use the Java SE 6 API specification to determine whether a specific method or class is supported in headless mode or not. If a specific component is not supported in headless mode, the only exception your application needs to catch is a HeadlessException
. It will be thrown first among the other possible exceptions. That is why the code sample in the section "Example: Using Headless Mode" contains no special requirement to catch the other exceptions.
You will certainly find other useful ways to apply the advantages of headless mode. We hope that this article can help you to accomplish this task and open new horizons in the Java SE platform.
AWT Enhancements in J2SE 1.4: Headless Support
J2SE 1.4 platform documentation: HeadlessException
The New Modality API in Java SE 6
The java.awt.Toolkit
Class
The java.awt.GraphicsEnvironment
Class
Artem Ananiev is a Sun Microsystems software engineer in Saint Petersburg, Russia. He has been working in the Abstract Window Toolkit (AWT) project for several years, with his primary functional areas in modality, robot, and multiscreen systems.
Alla Redko is a Sun Microsystems technical writer in Saint Petersburg, Russia. She supports documentation for the AWT project and updates the Java Tutorial. Prior to her assignment for Sun, she worked as a technical writer for eight years.
By Artem Ananiev and Alla Redko, June 2006 |
This article explains how to use the headless mode capabilities of the Java Platform, Standard Edition (Java SE, formerly referred to as J2SE).
Headless mode is a system configuration in which the display device, keyboard, or mouse is lacking. Sounds unexpected, but actually you can perform different operations in this mode, even with graphic data.
Where it is applicable? Let's say that your application repeatedly generates a certain image, for example, a graphical authorization code that must be changed every time a user logs in to the system. When creating an image, your application needs neither the display nor the keyboard. Let's assume now that you have a mainframe or dedicated server on your project that has no display device, keyboard, or mouse. The ideal decision is to use this environment's substantial computing power for the visual as well as the nonvisual features. An image that was generated in the headless mode system then can be passed to the headful system for further rendering.
Many methods in the java.awt.Toolkit
and java.awt.GraphicsEnvironment
classes, with the exception of fonts, imaging, and printing, require the availability of a display device, keyboard, and mouse. But some classes, such as Canvas or Panel, can be executed in headless mode. Headless mode support has been available since the J2SE 1.4 platform.
Note: This article will point the reader to documentation for version 6 of the Java SE platform. Any API additions or other enhancements to the Java SE platform specification are subject to review and approval by the JSR 270 Expert Group.
The java.awt.Toolkit
class is an abstract superclass of all actual implementations of the Abstract Window Toolkit (AWT). Subclasses of Toolkit are used to bind the various AWT components to particular native toolkit implementations.
Many components are affected if a display device, keyboard, or mouse is not supported. An appropriate class constructor throws a HeadlessException
:
Button
Checkbox
Choice
Dialog
FileDialog
Frame
Label
List
Menu
MenuBar
MenuItem
PopupMenu
Scrollbar
ScrollPane
TextArea
TextField
Window
Such heavyweight components require a peer at the operating-system level, which cannot be guaranteed on headless machines.
Methods related to Canvas, Panel, and Image components do not need to throw aHeadlessException
because these components can be given empty peers and treated as lightweight components.
The Headless toolkit also binds the Java technology components to the native resources, but it does so when resources don't include a display device or input devices.
The java.awt.GraphicsEnvironment
class is an abstract class that describes the collection ofGraphicsDevice
objects and Font
objects available to a Java technology application on a particular platform. The resources in this GraphicsEnvironment
might be local or on a remote machine. GraphicsDevice
objects can be monitors, printers, or image buffers and are the destination of Graphics2D
drawing methods. Each GraphicsDevice
has manyGraphicsConfiguration
objects associated with it. These objects specify the different configurations in which the GraphicsDevice
can be used.
Table 1 shows the GraphicsEnvironment
methods that check for headless mode support.
Table 1. The Headless Mode Methods
|
|
Method | Description | |||
---|---|---|---|---|
public static boolean isHeadless() |
Tests whether the environment is headless, and therefore does not support a display device, keyboard, or mouse. If this method returns
true , a HeadlessException is thrown from areas of the Toolkit andGraphicsEnvironment classes that depend on a display device, keyboard, or mouse. |
|||
public boolean |
Returns whether this
GraphicsEnvironment can support a display device, keyboard, or mouse. If this method returns true , aHeadlessException is thrown from areas of theGraphicsEnvironment that depend on a display device, keyboard, or mouse. |
|||
Note: The isHeadless()
method checks the specific system property, java.awt.headless
, instead of the system's hardware configuration.
A HeadlessException
is thrown when code that depends on a display device, keyboard, or mouse is called in an environment that does not support any of these. The exception is derived from an UnsupportedOperationException
, which is itself derived from a RuntimeException
.
To use headless mode operations, you must first understand how to check and set up the system properties related to this mode. In addition, you must understand how to create a default toolkit to use the headless implementation of the Toolkit class.
System Properties Setup
To set up headless mode, set the appropriate system property by using the setProperty()
method. This method enables you to set the desired value for the system property that is indicated by the specific key.
System.setProperty("java.awt.headless", "true"); |
In this code, java.awt.headless
is a system property, and true
is a value that is assigned to it.
You can also use the following command line if you plan to run the same application in both a headless and a traditional environment:
java -Djava.awt.headless=true |
Default Toolkit Creation
If a system property named java.awt.headless
is set to true
, then the headless implementation of Toolkit is used. Use the getDefaultToolkit()
method of the Toolkit
class to create an instance of headless toolkit:
Toolkit tk = Toolkit.getDefaultToolkit(); |
Headless Mode Check
To check the availability of headless mode, use the isHeadless()
method of theGraphicsEnvironment
class:
GraphicsEnvironment ge = |
This method checks the java.awt.headless
system property. If this property has a true
value, then a HeadlessException
will be thrown from areas of the Toolkit
andGraphicsEnvironment
classes that are dependent on a display device, keyboard, or mouse.
After setting up headless mode and creating an instance of the headless toolkit, your application can perform the following operations:
- Create lightweight components such as Canvas, Panel, and Swing components, except the top levels
- Obtain information about available fonts, font metrics, and font settings
- Set color for rendering text and graphics
- Create and obtain images and prepare images for rendering
- Print using
java.awt.PrintJob
,java.awt.print.*
, andjavax.print.*
classes - Emit an audio beep
Canvas
The following code represents a blank rectangular area of the screen onto which you can draw lines. To create a new Canvas component, use the Canvas
class.
final Canvas c = new Canvas() |
Fonts
This code shows how to set the font with the Font
class to draw a text string. The Graphics
object is used to render this string.
public void paint(Graphics g) |
Colors
This code shows how to set the color with the specified red, green, and blue values in order to draw a line. The Graphics
object is used to render this line.
public void paint(Graphics g) |
Images
In the following code, the read
method of the javax.imageio.ImageIO
class decodes thegrapefruit.jpg
image file shown in Figure 1 and returns a buffered image.
Image i = null; |
|
This code shows how to print a prepared canvas that enables you to define the printer as the default surface for the paint
method.
PrinterJob pj = PrinterJob.getPrinterJob(); |
Beep
The following code shows how to produce a simple beep sound by using the Toolkit
class's beep
method.
Toolkit tk = Toolkit.getDefaultToolkit(); |
The following HeadlessBasics
example uses all the capabilities described in this article.
To run this example, compile the following code by using the javac
compiler. Copy the image filegrapefruit.jpg
to the directory that contains the HeadlessBasics
class.
import java.awt.*; |
Figure 2 shows the printed output from this example.
|
Also, you can expect to see the following messages:
Headless mode: true |
Note: For demonstration purposes, the original sample code causes the application to throw twojava.awt.HeadlessException
s.
As an alternative, you can forward the standard output messages to a file and print out the file. In this case, use the following command line to run this example:
java HeadlessBasics 2> standard_output.txt |
How can you convert your existing application to execute it in headless mode? The most effective way to perform this conversion is to analyze your source code in order to determine any functionality that is dependent on headless mode. In other words, to implement the same functionality, you have to find those methods and classes that can throw a HeadlessException
and replace them with the methods and classes that are independent of headless mode.
You can use the Java SE 6 API specification to determine whether a specific method or class is supported in headless mode or not. If a specific component is not supported in headless mode, the only exception your application needs to catch is a HeadlessException
. It will be thrown first among the other possible exceptions. That is why the code sample in the section "Example: Using Headless Mode" contains no special requirement to catch the other exceptions.
You will certainly find other useful ways to apply the advantages of headless mode. We hope that this article can help you to accomplish this task and open new horizons in the Java SE platform.
AWT Enhancements in J2SE 1.4: Headless Support
J2SE 1.4 platform documentation: HeadlessException
The New Modality API in Java SE 6
The java.awt.Toolkit
Class
The java.awt.GraphicsEnvironment
Class
Artem Ananiev is a Sun Microsystems software engineer in Saint Petersburg, Russia. He has been working in the Abstract Window Toolkit (AWT) project for several years, with his primary functional areas in modality, robot, and multiscreen systems.
Alla Redko is a Sun Microsystems technical writer in Saint Petersburg, Russia. She supports documentation for the AWT project and updates the Java Tutorial. Prior to her assignment for Sun, she worked as a technical writer for eight years.
Using Headless Mode in the Java SE Platform--转的更多相关文章
- Monitor and diagnose performance in Java SE 6--转载
Java SE 6 provides an in-depth focus on performance, offering expanded tools for managing and monito ...
- 关于 Java(TM) Platform SE binary 已停止工作 的解决方法
一.问题描述 昨天晚上Myeclipse还用着好好的,今天早上打开工程,只要运行就卡住,大半天弹出个消息窗口:Java(TM) Platform SE binary 已停止工作. 如图 关闭Myecl ...
- .jar文件没有Java(TM) Platform SE binary打开方式解决办法
下面是我个人在打开.jar文件时候的一些小问题: 明明已经配置好了环境变量.jar文件却没有 Java(TM) Platform SE binary 的打开方式, 网上查了资料点明是环境变量的问题,后 ...
- Java SE技术概览 - Jave SE Platform at a Glance
从学习到工作,使用Java有几年时间,一直没有好好端详一下她的“内涵”.无意中看到一个关于Java SE的概览图,发现Java中提供的API还挺系统全面,把她放到博客中,相信对于想系统了解Java技术 ...
- Java SE 简介 & 环境变量的配置
Java SE 简介 & 环境变量的配置 一.Java 技术的三个方向 Java 技术分为三个方向 javaSE( Java Platform Standard Edition 标准版)用来开 ...
- Java SE、Java EE、Java ME
Java SE(Java Platform,Standard Edition).Java SE 以前称为 J2SE.它允许开发和部署在桌面.服务器.嵌入式环境和实时环境中使用的 Java 应用程序.J ...
- JDK与Java SE/EE/ME的区别
1. Java SE(Java Platform,Standard Edition). Java SE 以前称为 J2SE.它允许开发和部署在桌面.服务器.嵌入式环境和实时环境中使用的 Java 应用 ...
- Java SE Java EE Java ME 的区别
Java SE(Java Platform,Standard Edition) Java SE 以前称为 J2SE.它允许开发和部署在桌面.服务器.嵌入式环境和实时环境中使用的 Java 应用程序.J ...
- java的几个版本以及jre,jdk等概念——【转载】JDK、Java SE、Java EE、Java ME我该选
我们平时使用的一些软件,有一部分需要Java环境的支持,但是SUN那么多的产品,让人眼花缭乱的版本号,前看后看都差不多的缩写,让我们选择起来的时候常常望而却步,只好跟着感觉走.所以下面我要介绍的就是那 ...
随机推荐
- dell笔记本三个系统,ubuntu16.04更新,boot分区容量不足解决办法
本人自己dell物理机上安装windows 7 .centos 1704 和ubuntu1604 三个系统的,分区当时没有使用lVM,boot单独挂/dev/sda7 分区,只有200M,随着2次li ...
- JQuery实现Ajax应用
将自己之前在印象笔记的笔记搬家了~ 1.使用 load()方法异步请求数据,通过Ajax 请求加载服务器中的数据,并把返回的数据放置到指定的元素中,它的调用格式为: load(url,[data],[ ...
- errno
关于errno有以下需要注意: 1 A common mistake is to do if (somecall() == -1) { printf("som ...
- 第一个独立开发的游戏 怪斯特:零 已经上线APP STORE!
今天是个值得纪念的日子,而且是双喜临门 2年多来的摸爬滚打,终于有了回报 第一喜:自己独立开发的游戏 怪斯特:零 已经通过审核并上架APP STORE! 第二喜:迈入了自己期待2年之久的游戏行业,年后 ...
- 【hihoCoder】1036 Trie图
题目:http://hihocoder.com/problemset/problem/1036 给一个词典dict,词典中包含了一些单词words.要求判断给定的一个文本串text中是否包含这个字典中 ...
- Altium Designer之AD16在Win10系统下无法切换走线/布线模式的解决办法
有些童鞋会在Win10下使用AD16的时候发现,走线模式/布线模式(切换直角,45°,弧形等)不能切换. 问题出在输入法上,一般是切换到英文输入法即可解决,但是有一种情况是win10系统自带输入法有时 ...
- Xcode下搭建OpenGL开发环境
#include <GLUT/GLUT.h> void display() { glClear(GL_ENABLE_BIT); glBegin(GL_POLYGON); glVertex2 ...
- 利用GeoIP数据库及API进行地理定位查询
GeoIP数据库下载地址:http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz. 首先,在Max ...
- 谢欣伦 - OpenDev原创教程 - 服务端套接字类CxServerSocket
这是一个精练的服务端套接字类,类名.函数名和变量名均采用匈牙利命名法.小写的x代表我的姓氏首字母(谢欣伦),个人习惯而已,如有雷同,纯属巧合. CxServerSocket的使用如下(以某个叫做CSo ...
- 爬虫初探(2)之requests
关于请求网络,requests这个库是爬虫经常用到的一个第三方库. import requests url = 'http://www.baidu.com' #这里用get方法用来请求网页,其他还有p ...