I need to add image in Jtable cell without using TableCellRenderer.If i Use the following code means it display the name (string) in that particular cell instead of image.how to do this?.

 ImageIcon Icon= new ImageIcon("Blank.gif");
 table.setValueAt(Icon,1,0);


using renderer

class FRM_FLXD_ICON_ASSGN extends DefaultTableCellRenderer {
       ImageIcon Icon;
   public Component getTableCellRendererComponent(
      JTable table, Object value, boolean selected, boolean focus,
      int row, int col) {
       if(selected == true){
           Icon=new ImageIcon(getClass().getResource("Pointer.gif"));
       }
   else{
            Icon=new ImageIcon(getClass().getResource("Blank.gif"));
     }
       this.setIcon(Icon);
       return this;
     }

}
link|improve this question

57% accept rate
3  
welcome to the forum :-) While you are at learning, please learn java naming conventions as well and stick to them – kleopatra Feb 8 at 11:26
1  
"without using renderer" Why? – Andrew Thompson Feb 8 at 11:28
@AndrewThompson if i use renderer means i create separate class,so that. – javalearner Feb 8 at 11:30
So what? What is the problem? If code creates another class, or causes it to be created (by default, or by using another class), it is a trifling thing. If code creates so many extra objects that it throws an OutOfMemoryError, that is a problem. – Andrew Thompson Feb 8 at 11:41
@AndrewThompson class FRM_FLXD_ICON_ASSGN extends DefaultTableCellRenderer { ImageIcon Icon; public Component getTableCellRendererComponent( JTable table, Object value, boolean selected, boolean focus, int row, int col) { if(selected == true){ Icon=new ImageIcon(getClass().getResource("Pointer.gif")); } else{ Icon=new ImageIcon(getClass().getResource("Blank.gif")); } this.setIcon(Icon); return this; } } if i use this, the blank image set whole table column.just i click one column it will display pointer.gif – javalearner Feb 8 at 11:47
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

JTable know Icon/ImageIcon Object, then you can add Icon/ImageIcon directly to the JTable, example

link|improve this answer
what are the changes needed in the above coding for display the image? – javalearner Feb 8 at 11:20
please check my edit for code example – mKorbel Feb 8 at 11:21
just downvoted your example (how could I possibly have missed that :-) – kleopatra Feb 8 at 11:25
Nice example, but what is with the EventQueue.invokeLater(new Runnable() { public void run() { } });? (Empty runnable) – Andrew Thompson Feb 8 at 11:27
@Andrew Thompson :-) maaaaay beee I removed some code, maaaybe nothing, who's know what rice I smoked on this day, I have to .... thanks !!! – mKorbel Feb 8 at 11:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.