我想通过我的应用程序创建一个PDF文件,并希望通过电子邮件将PDF文件作为附件发送.在Android中有可能吗?如果是,请说明如何.
这是代码
Document doc = new Document();
PdfWriter.getInstance(doc, new FileOutputStream("urgentz.pdf"));
doc.open();
Image image = Image.getInstance ("urgentzImageahslkdhaosd.jpg");
doc.add(new Paragraph("Your text blah bleh"));
doc.add(image);
doc.close();
Run Code Online (Sandbox Code Playgroud)
将iText库与您的android项目一起使用