Download pdf file from Java web app made in JSF
问题 Hello I have a Java web app made in JSF...when you press a button it should write a string in a pdf file and download it. Here is the code: String cont = "DATA CREARE: " + data_creare3 + "\n" + "CIF: " + cif3 + "\n" + "ID SOLICITARE: " + id_solicitare3 + "\n" + "DETALII" + detalii3 + "\n" + "TIP: " + tip3 + "\n" + "ID: " + id3; startDownload(cont.getBytes(), "id.pdf"); This is the String and the method being called and here is the function that makes the download.. private void startDownload