随笔分类 - javaSE.GUI编程
摘要:练习(贪吃蛇) 文件结构 Data类 图像初始化 /** * 基础数据、图片 */ public class Data { //头部图片 URL public static ImageIcon headerIcon=new ImageIcon(Data.class.getResource("/sta
阅读全文
摘要:Swing 1.窗口和面板 /** * JFrame */ public class S01JFrame { public static void main(String[] args) { new S01JFrame().init(); } public void init(){ JFrame j
阅读全文
摘要:AWT(Abstract Window Tool) 0.GUI(Graphic User Interface) GUI(Graphic User Interface)核心技术:Swing、AWT(Abstract Window Tool); 缺点:界面不美观,需要jre环境; 要学:了解MVC架构,
阅读全文