0
DefaultTableModel
에서 셀을 클릭 할 때 마우스 이벤트 처리를 수행하는 방법 (예 : 전체 행을 인쇄하는 행의 첫 번째 열을 클릭 할 때).셀을 클릭 할 때 DefaultTableModel의 Java 이벤트 처리
static DefaultTableModel dTableModel = new DefaultTableModel(databaseInfo, columns){
public Class getColumnClass(int column) {
Class returnValue;
// Verifying that the column exists (index > 0 && index < number of columns
if ((column >= 0) && (column < getColumnCount())) {
returnValue = getValueAt(0, column).getClass();
} else {
// Returns the class for the item in the column
returnValue = Object.class;
}
return returnValue;
}
};
감사합니다.
JTable에 MouseLstener를 추가 했습니까? – MadProgrammer
나는 그것을 나중에 추가하고 싶지만 어떻게 모르겠다. 감사합니다. – kirowaxoaw