導航:首頁 > 編程語言 > java登錄界面背景圖片

java登錄界面背景圖片

發布時間:2023-12-30 09:47:34

java怎麼添加背景圖片

這是我以前的一個小代碼你可以看看
public class demo_9 extends JFrame {
jsplitPane jsp = null;
JList jlist;
JLabel jlabel;

public static void main(String[] args) {
demo_9 a = new demo_9();

}
public demo_9(){
String []words ={"boy","girl"};
JList jlist = new JList(words);
jlabel = new JLabel(new ImageIcon("Image//真三.gif")); //這里就是引入圖片了
//拆分窗格
jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,jlist,jlabel);
jsp.setDividerLocation(70);
//設置可以伸縮
jsp.setOneTouchExpandable(true);
this.add(jsp);
this.setTitle("test");
this.setSize(400,300);
this.setLocation(400,200);
this.setVisible(true);
}

}
步驟:首先先在project里新建個文件夾(Folder),然後把你要插入的圖片復制黏貼到這個文件夾裡面。
例如我那個引入的圖片代碼:jlabel = new JLabel(new ImageIcon("Image//真三.gif"));
我new一個folder叫Image,圖片名稱叫"真三.gif"

② java登陸界面如何插入背景圖片

直接上代碼了,這是我以前寫的
packageam_2;
importjava.awt.*;
importjavax.swing.*;
publicclassJLayeredPane_1extendsJFrame{
publicJLayeredPane_1(){
this.setSize(300,400);
JLayeredPanelayeredPane=this.getLayeredPane();
layeredPane.add(newBackgroundPanel(),newInteger(0));//thesameto
//layeredPane.add(panelBg);
layeredPane.add(newPanelContent(),newInteger(1));
this.setLocationRelativeTo(null);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
{
publicBackgroundPanel(){
this.add(newJLabel(getIcon()));
this.setBounds(0,0,300,400);
}
publicImageIcongetIcon(){
finalImageimageBg=Toolkit.getDefaultToolkit().getImage(
this.getClass().getResource("/img/0.jpg"));
ImageIconimageIcon=newImageIcon(imageBg);
returnimageIcon;
}
@
publicvoidpaint(Graphicsg){
ImageimageBg=Toolkit.getDefaultToolkit().getImage(
this.getClass().getResource("/img/0.jpg"));
g.drawImage(imageBg,0,0,300,400,null);
}
}
{
publicPanelContent(){
JButtonbutton=newJButton("測試按鈕1");
JButtonbutton2=newJButton("測試按鈕2");
JButtonbutton3=newJButton("測試按鈕3");
this.setBounds(100,100,100,100);
this.setOpaque(false);//設置為透明
this.add(button);
this.add(button2);
this.add(button3);
}
}
/**
*@paramargs
*@throwsException
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
JLayeredPane_1frame=newJLayeredPane_1();
}
}

閱讀全文

與java登錄界面背景圖片相關的資料

熱點內容
感動用英語怎麼說app 瀏覽:712
文件名選擇編輯器屬性 瀏覽:728
使用原始配置文件 瀏覽:762
槍線圖需要下列哪些數據 瀏覽:592
哪個網站可以查物品真實評論 瀏覽:407
win10禁用outlook 瀏覽:807
精雕編程是怎麼回事 瀏覽:116
如何用編程貓制大魚和小魚 瀏覽:635
qq頭像勵志唯美圖片 瀏覽:870
mx播放器隱藏文件夾找不到了 瀏覽:787
linuxfusentfs 瀏覽:122
為什麼蘋果搜索不到滴滴出行app 瀏覽:830
java數組按鈕 瀏覽:855
千川計劃看哪些數據 瀏覽:807
excel文件名到了最左邊 瀏覽:861
excel如何在數據上方求和 瀏覽:876
交通行業統計能源數據在哪裡找 瀏覽:67
文件管理找不到酷我下載的音樂 瀏覽:282
如何從路由器分享網路 瀏覽:926
小米5天氣不顯示數據怎麼辦 瀏覽:562

友情鏈接