1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| public void rapport_pdf()
{
try
{
Document document = new Document();
//__chemin enregistrement
String filename="test.pdf";
File PDF = new File(Environment.getExternalStorageDirectory() + "/test");
if (!PDF.exists()) { PDF.mkdirs();}
File gpxfile = new File(PDF,filename);
PdfWriter.getInstance(document,new FileOutputStream(gpxfile));
document.open();
document.add(new Phrase(" Bonjour a tous "));
document.close();
} catch (Exception e) {
e.printStackTrace();
}
}
} |
Partager