我最近在android studio上编写了这个小的java代码来测试android的iTextG库。这个代码应该从editText字段中获取文本并从文本中创建一个pdf文件。
public void createPDF(View view){
//reference to EditText
EditText et=(EditText)findViewById(R.id.txt_input);
//create document object
Document doc=new Document();
//output file path
String outpath=Environment.getExternalStorageDirectory()+"/mypdf.pdf";
try {
//create pdf writer instance
PdfWriter.getInstance(doc, new FileOutputStream(outpath));
//open the document for writing
doc.open();
//add paragraph to the document
doc.add(new Paragraph(et.getText().toString()));
//close the document
doc.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
但问题是我没有在手机中获得所需的pdf文件。可能是什么问题。代码有什么问题。