Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JTableと組み合わせて作成しようとしていますDefaultTableModel。私の問題は、クリックして並べ替えると (価格の行)、正しく並べ替えられないことです。
JTable
DefaultTableModel
行があるとします:
2 6 3 112 42 1
私が欲しいもの:
1 2 3 6 42 112
私が得るもの:
1 112 2 3 42 6
提案や解決策はありますか?
私のプロジェクトのコードベースの例。これはあなたの TableModel に属します
@Override public Class<?> getColumnClass(int col) { switch (col) { case 0: return Integer.class; case 1: return String.class; case 2: return String.class; case 3: return Integer.class; } }