Search:

Type: Posts; User: nandosby

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    3,500

    Re: jTable to Array

    Thank you ...finally i get the solution :)
    Here it is:

    public Object extractTable(JTable table, int row_index, int col_index){
    return table.getModel().getValueAt(row_index, col_index);
    }
    ...
  2. Replies
    4
    Views
    3,500

    jTable to Array

    I have five columns in my jTable and I want to retreive the data from the second column to an array

    my jTable can be like this:


    Column1 Column2 Column3
    50.45 45.56 34.56...
Results 1 to 2 of 2