Skip to main content

how get Image icon in JTable



i have created JTable. i get the value from DB to JTable . i am having problem while click on row it show the image icon path. cannot show the image. how i can set the image.





one more thing i am having two images 1. Pointer image 2. Blank Image At the run time Pointer image in a first row by defaulty, After that i clicked in the 5th row, the first row should set with Blank Image, and the 5th rows should be set pointer image. and i don't know its possible in DefaultCellRender.







package ex10012012;



import java.awt.*;

import javax.swing.*;

import javax.swing.table.*;

import java.sql.*;





public class frame10012012 extends javax.swing.JFrame {



private DefaultTableModel TmpFlxMdl;

private TableColumn TmpFlxColumn;

private int TmpRow,TmpFlxDRow;

private TableColumn TmpFlxCol;

private Statement TmpFlxSt=null;

private ResultSet TmpFlxDRs=null;

GENLMODL TmpGenModl= new GENLMODL();

FrmM01011 TmpFrmM0101 = new FrmM01011();



public frame10012012() {

initComponents();

}



private void FlxDMouseClicked(java.awt.event.MouseEvent evt) {



if( evt.getClickCount()==2)

{

setVisible(false);

FlxD.setRowSelectionAllowed(true);

int row=FlxD.getSelectedRow();

int modelRow = FlxD.convertRowIndexToModel(row);

Object oc= FlxD.getModel().getValueAt(modelRow, 1);

String TempStr=oc.toString();

TmpFlxMdl =(DefaultTableModel)FlxD.getModel();

try{

}

catch(Exception e){

System.out.println(e);

}

TmpFrmM0101.setVisible(true);



}

else{

FRM_FLXD_PTR_DATA_ASSGN(FlxD.getSelectedRow());

}

}



public void Frm_FlxD_Database() {

try{

TmpRow=0;

TmpGenModl.PRJ_DB_CONNECTION_ASSGN();

TmpFlxMdl =(DefaultTableModel)FlxD.getModel();

TmpFlxDRow = 2;



TmpFlxSt=TmpGenModl.GContcn.createStatement();

TmpFlxDRs=TmpFlxSt.executeQuery("SELECT * from ActivityMaster");

PRJ_FLX_DEFTL_ASSGN(FlxD, "BEGIN");

TmpFlxDRs.first();

do {

FlxD.setValueAt(TmpFlxDRs.getString("ActvtyDesc"), TmpRow,1);

FlxD.setValueAt(TmpFlxDRs.getString("ActvtyCode"), TmpRow,2);

FlxD.setValueAt(TmpFlxDRs.getString("ActvtyDispStatus"), TmpRow,3);

FlxD.setValueAt(TmpFlxDRs.getString("ActvtyId"), TmpRow,4);

TmpFlxMdl.addRow(new Object[]{""});

TmpRow = TmpRow + 1;

}while(TmpFlxDRs.next());

FRM_FLXD_PTR_DATA_ASSGN(TmpFlxDRow);

}

catch(Exception e){

System.out.println(e);

}

}



private void PRJ_FLX_DEFTL_ASSGN(JTable PFlx, String POptnStr){

int TmpRow;

DefaultTableModel TmpFlxMdl = new DefaultTableModel();

TmpFlxMdl = (DefaultTableModel) PFlx.getModel();



if (POptnStr == "BEGIN") {

for (TmpRow=2; TmpRow<=TmpFlxMdl.getRowCount(); TmpRow++) {

TmpFlxMdl.removeRow(TmpRow);

}



}else if(POptnStr == "END"){

TmpRow = TmpFlxMdl.getRowCount();

TmpFlxMdl.removeRow(TmpRow);

}

}



private void FRM_FLXD_PTR_DATA_ASSGN(int PFlxRow) {

//System.out.println(TmpFlxDRow);

TmpFlxDRow = PRJ_FLX_PTR_ASSGN(FlxD, PFlxRow, TmpFlxDRow);

}



private int PRJ_FLX_PTR_ASSGN(JTable PFlx, int PCurRow, int PPrvRow){

ImageIcon TmpIcon;

System.out.println(PCurRow);

System.out.println(PPrvRow);



if (PCurRow != PPrvRow){

TmpIcon = new ImageIcon(getClass().getResource("Blank.gif"));

PFlx.setValueAt(PCurRow,0);

}

TmpIcon = new ImageIcon(getClass().getResource("Pointer.gif"));

PFlx.setValueAt(TmpIcon, PCurRow,0);



return(PCurRow);

}

public static void main(String args[]) {

java.awt.EventQueue.invokeLater(new Runnable() {

public void run() {

frame10012012 TmpFrame= new frame10012012();

TmpFrame.Frm_FlxD_Database();

TmpFrame.setVisible(true);

}

});

}



// Variables declaration - do not modify

private javax.swing.JButton CmdAdd;

private javax.swing.JButton CmdBack;

private javax.swing.JButton CmdDelete;

private javax.swing.JTable FlxD;

private javax.swing.JLabel Lbl01;

private javax.swing.JLabel Lbl02;

private javax.swing.JRadioButton Rbtn01;

private javax.swing.JTextField Txt01;

private javax.swing.JTextField Txt02;

private javax.swing.JPanel jPanel1;

private javax.swing.JPanel jPanel2;

private javax.swing.JPanel jPanel3;

private javax.swing.JScrollPane jScrollPane1;

// End of variables declaration

}




Comments

  1. You can put Icon/ImageIcon directly to the cell, because JTable knows this Object's type in the ColumnClass, same as String, Number, Boolean and e.i.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...