文件名称:Java制作软件启动界面.rar
文件大小:31KB
文件格式:RAR
更新时间:2022-07-30 11:40:37
Java源码-初学实例
Java制作带Loading加载效果的软件启动界面,Thread splashThread; //进度条更新线程 JProgressBar progress; //进度条 public JWindowDemo() { Container container=getContentPane(); //得到容器 setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); //设置光标 URL url = getClass().getResource("login.jpg"); //图片的位置 if(url != null){ container.add(new JLabel(new ImageIcon(url)),BorderLayout.CENTER); //增加图片 } progress = new JProgressBar(1,100); //实例化进度条 progress.setStringPainted(true); //描绘文字 progress.setString("加载程序中,请稍候......"); //设置显示文字 progress.setBackground(Color.white); //设置背景色 container.add(progress,BorderLayout.SOUTH); //增加进度条到容器上 Dimension screen = getToolkit().getScreenSize(); //得到屏幕尺寸 pack(); //窗口适应组件尺寸 setLocation((screen.width-getSize().width)/2,(screen.height-getSize().height)/2); //设置窗口位置
【文件预览】:
codesc.net
----Java制作程序启动界面()
--------JWindowDemo.java(2KB)
--------26-1.bmp(139KB)
--------login.jpg(13KB)
--------JWindowDemo.class(2KB)