close

有更新都會放上來

JTable

Q:要如何清空Jtable的內容?

A:沒有可用的內建API,須自己寫一段Method

    private void clearTable(JTable shiftTable) {
        int row = shiftTable.getRowCount();
        int column = shiftTable.getColumnCount();

        for (int i = 0; i < row; i++) {
            for (int j = 0; j < column; j++) {
                shiftTable.setValueAt(null, i, j);
            }
        }
    }

Q:如何分別設定各欄位寬度?

A:JTable.getColumnModel().getColumn(第幾欄).setPreferredWidth(寬度);

JTextArea

Q:要怎麼實現文字滿行自動換行?

A: initialize時加入以下兩段 

  jTextArea1.setWrapStyleWord(true);
       jTextArea1.setLineWrap(true);

JDBC

Q:Result Set 永遠不null,除非手動將它設為null,要怎麼判斷是否有返回至少1筆資料?

A:第一次執行ResultSet.next() 如果回傳 false 那就是select不到東西

其他

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Jadson 的頭像
    Jadson

    我是傑迪森,嘗試做自己和他人的人生導師

    Jadson 發表在 痞客邦 留言(0) 人氣()