Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 나의 취미
- iBatis
- 스킨 스쿠버
- php thumbnail
- node.js web framework
- nodejs express
- 명사 추출기
- ror실행
- flex3
- 도커
- 주식이야기
- 책이야기
- Node.js
- 디즈니씨
- express for node.js
- 명사 분석기
- docker
- 베트남어
- Eclipse
- 나의 프로젝트
- C/C++
- php
- 명사 뽑아내기
- scala
- Cross
- ajax
- Lift
- rss
- ejb
- 메일왕창보내는법
Archives
- Today
- Total
nkdk의 세상
테이블에 가운데 정렬 어떻게 할 것인가? ^_^? 본문
// 드디어 가운데 정렬 해결~ 아마도 많은 분들이 찾고 찾으 셨으리라
// 생각되네요.
// 쭈욱 나갑니다.
class AlignedTableCellRenderer extends DefaultTableCellRenderer {
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (column == 5 || column == 7 || column == 8 || column == 12){
this.setHorizontalAlignment(SwingConstants.LEADING);
}
else this.setHorizontalAlignment(SwingConstants.CENTER);
return this;
}
}
// 다음에 실제 테이블 적용
AlignedTableCellRenderer render = new AlignedTableCellRenderer();
jTable1.setDefaultRenderer(jTable1.getColumnClass(0), render);
오쯔까레
이런식으로 내부 클래스를 하나 만들어 주어서 활용하시면 됩니다.
딱 보면 감이 오시리라 생각이 듭니다. ^_^ 오츠까레 사마 데시따 ^_^
// 생각되네요.
// 쭈욱 나갑니다.
class AlignedTableCellRenderer extends DefaultTableCellRenderer {
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (column == 5 || column == 7 || column == 8 || column == 12){
this.setHorizontalAlignment(SwingConstants.LEADING);
}
else this.setHorizontalAlignment(SwingConstants.CENTER);
return this;
}
}
// 다음에 실제 테이블 적용
AlignedTableCellRenderer render = new AlignedTableCellRenderer();
jTable1.setDefaultRenderer(jTable1.getColumnClass(0), render);
오쯔까레
이런식으로 내부 클래스를 하나 만들어 주어서 활용하시면 됩니다.
딱 보면 감이 오시리라 생각이 듭니다. ^_^ 오츠까레 사마 데시따 ^_^