Salut,
List<Integer> values = new ArrayList<Integer>();
for (int i : table.getSelectedRows()){
values.add((double) table.getValueAt(i, 3));
}
En partant tu principe de
table
est ta JTable.
Note : table.getValueAt() retourne un Object, d'où le cast si tes valeurs sont bien des Double.