Pegar valores de um jtable

Olá Pessoal preciso pegar os valores de uma coluna de um jtable e salvar em txt porem com esse codigo o maximo que consegui e pegar um valor e as colunas possuem até 200 linhas alguem pode me ajudar??

String Fones;
for (int i=0; i<=jTableClientes.getRowCount()-1;i++) {
Fones =(jTableClientes.getValueAt(i, 1).toString());

    Path caminho = Paths.get("C:\\users\\lucas\\Desktop\\progetos em java\\gas\\Cupom não fiscal.txt");
        
   byte[] textoEMByte = Fones.getBytes();
  
   
    try {
        Files.write(caminho,textoEMByte);
        
                  
    } catch (IOException ex) {
        JOptionPane.showMessageDialog(null,"deu merda");
    }
    }