⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lookand.java

📁 东西比较杂
💻 JAVA
字号:
/**
 * 
 */
package com.tiankong;

/**
 * @author Administrator
 *
 */
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
public class LookAnd {
	private static UIManager.LookAndFeelInfo looks[];
	//private Vector b;
	public LookAnd(){
		//super("wo");
		looks=UIManager.getInstalledLookAndFeels();
		//b=new Vector(looks);

	}
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		LookAnd t=new LookAnd();
		int i=0;
		while(looks[i]!=null){
			System.out.println(i+" classname is :"+looks[i].getClassName());
			System.out.println(i+" name is :"+looks[i].getName());
			System.out.println(i+" class is :"+looks[i++].getClass());
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -