资源描述:
《java图形界面中的图片显示》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、java图形界面中的图片显示不好2011-06-1312:441203670773
2、分类:JAVA相关
3、浏览342次我在Java的JDialog中想添加一个图片想填充整个对话框,添加后的图片却显示不出来,然后在用鼠标东一下对话框,图片就显示出来了。怎么回事呀精彩回答2011-06-2002:59packagehao;importjava.awt.BorderLayout;importjava.awt.Color;importjava.awt.Dimension;importjava.awt.GridLayout;importjava.io.File;im
4、portjavax.swing.BorderFactory;importjavax.swing.Box;importjavax.swing.ImageIcon;importjavax.swing.JButton;importjavax.swing.JComboBox;importjavax.swing.JLabel;importjavax.swing.JPanel;importjavax.swing.JScrollPane;importjavax.swing.JTextArea;importjavax.swing.JTextPane;importjava
5、x.swing.text.BadLocationException;importjavax.swing.text.SimpleAttributeSet;importjavax.swing.text.StyleConstants;importjavax.swing.text.StyledDocument;publicclassChatPanelextendsJPanel{privatestaticfinallongserialVersionUID=1L;JButtonsend,record,saveRecord,image;JTextAreainputAr
6、ea;JTextPanetext;//注意用法****************************************************************************JComboBoxfontName=null,fontSize=null,fontStyle=null,fontColor=null,fontBackColor=null;publicStyledDocumentdoc=null;JScrollPanescrollPane;JPaneltextChat;JButtonmusic;publicChatPanel(
7、){setLayout(newBorderLayout());text=newJTextPane();text.setEditable(false);doc=text.getStyledDocument();//跟踪文本和图片写到该区域的位置*************************************scrollPane=newJScrollPane(text);//注意下面对JComboBox的巧用***********************************************************************
8、String[]str_name=;String[]str_Size=;String[]str_Style=;String[]str_Color=;String[]str_BackColor=;fontName=newJComboBox(str_name);fontSize=newJComboBox(str_Size);fontStyle=newJComboBox(str_Style);fontColor=newJComboBox(str_Color);fontBackColor=newJComboBox(str_BackColor);fontName.
9、setBackground(newColor(255,153,255));fontSize.setBackground(newColor(255,153,255));fontStyle.setBackground(newColor(255,153,255));fontColor.setBackground(newColor(255,153,255));fontBackColor.setBackground(newColor(255,153,255));Boxbox=Box.createVerticalBox();//创建一个可以容纳多个Box组件的Box
10、*******************************Boxbox_1=