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

📄 main.java

📁 图像管理 对图片进行预览的功能(参考ACDSee界面)。要求在界面中显示一个本地计算机中的文件夹的树形结构
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package javaapplication3;import javax.swing.UIManager;/** * * @author Administrator */public class Main {  public static void main(String args[]) {        java.awt.EventQueue.invokeLater(new Runnable() {            public void run() {                try		{			UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());		}		catch  (Exception e){}                new NewJFrame1().setVisible(true);                FolderExplorer a=new FolderExplorer();                    }        });    }}

⌨️ 快捷键说明

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