当前位置: 技术问答>java相关
高手帮忙解释一下Toolkit类。给高分
来源: 互联网 发布时间:2015-02-18
本文导语: Gets the toolkit of this component. Note that the frame that contains a component controls which toolkit is used by that component. Therefore if the component is moved from one frame to another, the toolkit it uses may change. 不明白,sun的...
Gets the toolkit of this component. Note that the frame that contains a component controls which toolkit is used by that component. Therefore if the component is moved from one frame to another, the toolkit it uses may change.
不明白,sun的解释!
不明白,sun的解释!
|
这是一个AWT工具箱。它提供对本地GUI最低层次的JAVA访问。在大多情况下,这个类不直接用在小应用程序或应用程序中。具有把行图形数据转换为可显示的图像、返回字体信息、得出显示尺寸和分辨率以及获得系统属性信息的方法。
这样解释可以了吗???
这样解释可以了吗???
|
FT!!
举例:列举本地可用字体名:
import java.awt.*;
public class FontList{
public static void main(String[] arg){
ToolKit tk=ToolKit.getDefaultToolKit();
String[] fontList=tk.getFontList();
for(int i=0;i
举例:列举本地可用字体名:
import java.awt.*;
public class FontList{
public static void main(String[] arg){
ToolKit tk=ToolKit.getDefaultToolKit();
String[] fontList=tk.getFontList();
for(int i=0;i