rfid.java
ListSelectionModel rowSM = table1.getSelectionModel();
rowSM.addListSelectionListener(new ListSelectionListener(){
public void valueChanged(ListSelectionEvent e) {
ListSelectionModel lsm = (ListSelectionModel)e.getSource();
if(e.getValueIsAdjusting()){
if(!lsm.isSelectionEmpty()){ // index가 선택 되었을때
Vector clickedRow = (Vector) dt1.getDataVector().get(lsm.getMinSelectionIndex());
// sort한 테이블의 인덱스 찾기.
// selectedRow = lsm.getMinSelectionIndex();
}
}
}
}); //
table1.setAutoCreateRowSorter(true);
TableRowSorter sorter = new TableRowSorter(table1.getModel());
table1.setRowSorter(sorter); //오름차순 내림차순 정렬부분
파일 올려놓은거 실행해보면여..
CONNECT 부분 눌르면 JTABLE에아무 값이나 들어 오거든여
테이블의 회색부분 눌르면 오름차순 내림차순 정렬이 됩니다..
오름차순 내림차순 정렬후에 값의 아무 줄을 눌르면 정렬되기 전의 값들만 불러옵니다.
알아보니깐 위의 주황색부분으로 된걸 추가하여 적용해야된다고하는데.. 여러방법을 적용해봐도 어떻게 하는지 잘몰르겠네요..
jtable 오름차순 내림차순 정렬후 정렬된값을 추출해내는방법 잘아시는분 도와주세요..