htmlPage+="</TR>\n";
while(i < patientsList.length){
int k = 0;
while(k<allPatients.size()){
Paziente p = allPatients.get(k);
String id = p.getId().toString();
if(id.equals(patientsList[i]))
if (chosenPatients.add(p)){//se l'id nella lista è uguale a quello recuperato dal post lo aggiungo e controllo il buon esito
htmlPage+="<TR>\n";
htmlPage+="<TD>"+p.getId()+"</TD>\n";
htmlPage+="<TD>"+p.getUsername()+"</TD>\n";
htmlPage+="<TD>"+p.getName()+" "+p.getSurname()+"</TD>\n";
htmlPage+="<TD>"+p.getGender()+"</TD>\n";
htmlPage+="<TD>"+p.getVaccination_date()+"</TD>\n";
htmlPage+="<TD>"+"<img src=\"photo/"+p.getPicture()+"\" height=\"50\" width=\"50\" alt=\"Foto Paziente\" /></TD>\n";
htmlPage+="<TD>"+p.getDoctor_id()+"</TD>\n";
htmlPage+="</TR>\n";
} else
Log4k.warn(Conferma.class.getName(),
"Il paziente selezionato non è stato aggiunto alla lista");
k++;