Android 生成pdf文件

Android 生成pdf文件

1.使用官方的方式

使用官方的方式也就是PdfDocument类的使用

1.1 基本使用

/**** 将tv内容写入到pdf文件*/@RequiresApi(api = Build.VERSION_CODES.KITKAT)private void newPdf() {// 创建一个PDF文本对象PdfDocument document = new PdfDocument();//创建当前页的信息,Builder中的参数表示页面的宽高,以及第几页
​PdfDocument.PageInfo pageInfo =new PdfDocument.PageInfo.Builder(binding.pdfTv.getWidth(), binding.pdfTv.getHeight(), 1).create();// 生成当前页PdfDocument.Page page = document.startPage(pageInfo);
​// 在当前页上画画,即把所需要的view的视图画到page的画布上View content = pdfTv;content.draw(page.getCanvas());
​// 结束当前页document.finishPage(page);String filePath = getExternalFilesDir("").getAbsolutePath() + "/test.pdf";try {FileOutputStream outputStream = new FileOutputStream(new File(filePath));//写入到文件中document.writeTo(outputStream);} catch (IOException e) {e.printStackTrace();}//关闭document.close();}

注意事项

1.需要申请写入文件的权限

2.API最低是19,有api版本的限制

1.2 将根布局的内容生成pdf文件

    /**** 保存一个屏幕的内容(包含界面中的 文字、图片、按钮等)*/@RequiresApi(api = Build.VERSION_CODES.KITKAT)private void pdfTvAndIv() {// 创建一个PDF文本对象PdfDocument document = new PdfDocument();//创建当前页的信息,Builder中的参数表示页面的宽高,以及第几页
​PdfDocument.PageInfo pageInfo =new PdfDocument.PageInfo.Builder(binding.getRoot().getWidth(), binding.getRoot().getHeight(), 1).create();// 生成当前页PdfDocument.Page page = document.startPage(pageInfo);
​// 在当前页上画画,即把所需要的view的视图画到page的画布上View content = binding.getRoot();content.draw(page.getCanvas());
​// 结束当前页document.finishPage(page);String filePath = getExternalFilesDir("").getAbsolutePath() + "/tviv.pdf";try {FileOutputStream outputStream = new FileOutputStream(new File(filePath));document.writeTo(outputStream);} catch (IOException e) {e.printStackTrace();}
​document.close();}

也同样简单。binding.getRoot()就是xml文件的根布局

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools">
​<data>
​</data>
​<ScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context=".pdf.PdfActivity">
​<LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical">
​<TextViewandroid:id="@+id/pdf_tv"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="" />
​<ImageViewandroid:id="@+id/pdf_iv"android:layout_width="wrap_content"android:layout_height="wrap_content"android:scaleType="fitXY"android:src="@mipmap/logo"android:visibility="visible" />
​<Buttonandroid:id="@+id/pdf1"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="官方方式生成pdf" /></LinearLayout>
​</ScrollView>
</layout>

1.3 TextView有很多行,超过一屏

/**** 将多行的文字写入到pdf文件*/
@RequiresApi(api = Build.VERSION_CODES.KITKAT)
private void pdfInterviewContent() {TextView tv_content = binding.pdfTv;// 创建一个PDF文本对象PdfDocument document = new PdfDocument();// 一页pdf的高度int onePageHeight = tv_content.getLineHeight() * 30;// TextView中总共有多少行int lineCount = tv_content.getLineCount();// 计算这个TextView需要分成多少页int pdfCount = lineCount % 30 == 0 ? lineCount / 30 : lineCount / 30 + 1;for (int i = 0; i < pdfCount; i++) {PdfDocument.PageInfo pageInfo = new PdfDocument.PageInfo.Builder(tv_content.getWidth(), onePageHeight + 120, 1).setContentRect(new Rect(0, 60, tv_content.getWidth(), onePageHeight + 60)).create();PdfDocument.Page page = document.startPage(pageInfo);Canvas canvas = page.getCanvas();canvas.translate(0, -onePageHeight * i);tv_content.draw(canvas);document.finishPage(page);}//document = pdfImageviewContent(document);File file = new File(getExternalFilesDir("").getAbsolutePath() + "/test.pdf");try {FileOutputStream outputStream = new FileOutputStream(file);document.writeTo(outputStream);} catch (IOException e) {e.printStackTrace();}document.close();
}

1.4 小结

1.保存的文件有些大
2.保存超过一屏的内容有些难,涉及到canvas的移动
3.同时保存文字与图片有些难度(如果超过一屏幕的话,图片保存后会是空白的情况。没有超过一屏,保存后能正常显示)
4.如果界面中有特殊的view,可能会保存失败!比如说SurfaceView。
[附上解决方案的链接](https://www.jianshu.com/p/1ebaf5e6fac1)

2.使用itext的方式

对于Itext,主要有两个版本,一个是5.x,另一个是7.x,这两个版本是完全是不兼容的,其区别可以参考官网:iText 7 and iText 5: roadmaps, differences, updates | iText PDF,

5.x的文档:iText Javadoc Home

7.x的文档:iText Javadoc Home

2.1 7.x

/*** 创建PDF文件*/
private void createPDF(String path) {if (XXPermissions.isGranted(TextActivity.this, Permission.MANAGE_EXTERNAL_STORAGE)) {File file = new File(path);if (file.exists()) {file.delete();}file.getParentFile().mkdirs();
​// 创建DocumentPdfWriter writer = null;try {writer = new PdfWriter(new FileOutputStream(path));} catch (FileNotFoundException e) {Log.e("FileNotFoundException", e.toString());}
​PdfDocument pdf_document = new PdfDocument(writer);// 生成的PDF文档信息PdfDocumentInfo info = pdf_document.getDocumentInfo();// 标题info.setTitle("First pdf file");// 作者info.setAuthor("Quinto");// 科目info.setSubject("test");// 关键词info.setKeywords("pdf");// 创建日期info.setCreator("2022-10-20");
​Document document = new Document(pdf_document, PageSize.A4, false);
​// 文字字体(显示中文)、大小、颜色PdfFont font = null;try {font = PdfFontFactory.createFont("STSong-Light", "UniGB-UCS2-H");} catch (IOException e) {Log.e("IOException", e.toString());}float title_size = 36.0f;float text_title_size = 30.0f;float text_size = 24.0f;Color title_color = new DeviceRgb(0, 0, 0);Color text_title_color = new DeviceRgb(65, 136, 160);Color text_color = new DeviceRgb(43, 43, 43);
​// 行分隔符// 实线:SolidLine()  点线:DottedLine()  仪表盘线:DashedLine()LineSeparator separator = new LineSeparator(new SolidLine());separator.setStrokeColor(new DeviceRgb(0, 0, 68));
​// 添加大标题Text title = new Text("这里是pdf文件标题").setFont(font).setFontSize(title_size).setFontColor(title_color);Paragraph paragraph_title = new Paragraph(title).setTextAlignment(TextAlignment.CENTER);document.add(paragraph_title);
​for (int i = 1; i < 10; i++) {// 添加文本小标题Text text_title = new Text("第" + i + "行:").setFont(font).setFontSize(text_title_size).setFontColor(text_title_color);Paragraph paragraph_text_title = new Paragraph(text_title);document.add(paragraph_text_title);
​// 添加文本内容String content = "我是文本内容" + i + i + i + i + i + i + i + i + i + i;Text text = new Text(content).setFont(font).setFontSize(text_size).setFontColor(text_color);Paragraph paragraph_text = new Paragraph(text);document.add(paragraph_text);
​// 添加可换行空间document.add(new Paragraph(""));// 添加水平线document.add(separator);// 添加可换行空间document.add(new Paragraph(""));}
​/*** 添加列表*/List list = new List().setSymbolIndent(12).setListSymbol("\u2022").setFont(font);list.add(new ListItem("列表1")).add(new ListItem("列表2")).add(new ListItem("列表3"));document.add(list);
​/*** 添加图片*/Text text_image = new Text("图片:").setFont(font).setFontSize(text_title_size).setFontColor(text_title_color);Paragraph image = new Paragraph(text_image);document.add(image);Image image1 = null;Image image2 = null;Image image3 = null;try {/*image1 = new Image(ImageDataFactory.create("/storage/emulated/0/DCIM/Camera/IMG_20221003_181926.jpg")).setWidth(PageSize.A4.getWidth() * 2 / 3);image2 = new Image(ImageDataFactory.create("/storage/emulated/0/Download/互传/folder/证件/XHS_159716343059020494b83-da6a-39d7-ae3b-13fd92cfbb53.jpg")).setWidth(PageSize.A4.getWidth() / 3);image3 = new Image(ImageDataFactory.create("/storage/emulated/0/Download/互传/folder/证件/XHS_1597163520524f0b4df77-8db1-35c6-9dfa-3e0aa74f1fef.jpg")).setWidth(PageSize.A4.getWidth() / 3);*/
​image1 = new Image(ImageDataFactory.create("/storage/emulated/0/Pictures/JPEG_20230609_154240_8941441911022988116.jpg")).setWidth(PageSize.A4.getWidth() * 2 / 3);image2 = new Image(ImageDataFactory.create("/storage/emulated/0/Tencent/QQ_Images/-318f738d395e5630.jpg")).setWidth(PageSize.A4.getWidth() / 3);image3 = new Image(ImageDataFactory.create("/storage/emulated/0/Pictures/Screenshots/Screenshot_20230615_145522_com.hermes.wl.jpg")).setWidth(PageSize.A4.getWidth() / 3);
​} catch (MalformedURLException e) {Log.e("MalformedURLException", e.toString());}Paragraph paragraph_image = new Paragraph().add(image1).add("  ").add(image2).add("  ").add(image3);document.add(paragraph_image);document.add(new Paragraph(""));
​/*** 添加表格*/Text text_table = new Text("表单:").setFont(font).setFontSize(text_title_size).setFontColor(text_title_color);Paragraph paragraph_table = new Paragraph(text_table);document.add(paragraph_table);// 3列float[] pointColumnWidths = {100f, 100f, 100f};Table table = new Table(pointColumnWidths);// 设置边框样式、颜色、宽度Color table_color = new DeviceRgb(80, 136, 255);Border border = new DottedBorder(table_color, 3);table.setBorder(border);// 设置单元格文本居中table.setTextAlignment(TextAlignment.CENTER);// 添加单元格内容Color table_header = new DeviceRgb(0, 0, 255);Color table_content = new DeviceRgb(255, 0, 0);Color table_footer = new DeviceRgb(0, 255, 0);Text text1 = new Text("姓名").setFont(font).setFontSize(20.0f).setFontColor(table_header);Text text2 = new Text("年龄").setFont(font).setFontSize(20.0f).setFontColor(table_header);Text text3 = new Text("性别").setFont(font).setFontSize(20.0f).setFontColor(table_header);table.addHeaderCell(new Paragraph(text1));table.addHeaderCell(new Paragraph(text2));table.addHeaderCell(new Paragraph(text3));Text text4 = new Text("张三").setFont(font).setFontSize(15.0f).setFontColor(table_content);Text text5 = new Text("30").setFont(font).setFontSize(15.0f).setFontColor(table_content);Text text6 = new Text("男").setFont(font).setFontSize(15.0f).setFontColor(table_content);table.addCell(new Paragraph(text4));table.addCell(new Paragraph(text5));table.addCell(new Paragraph(text6));Text text7 = new Text("丽萨").setFont(font).setFontSize(15.0f).setFontColor(table_footer);Text text8 = new Text("20").setFont(font).setFontSize(15.0f).setFontColor(table_footer);Text text9 = new Text("女").setFont(font).setFontSize(15.0f).setFontColor(table_footer);table.addFooterCell(new Paragraph(text7));table.addFooterCell(new Paragraph(text8));table.addFooterCell(new Paragraph(text9));// 将表格添加进pdf文件document.add(table);
​/*** 添加页眉、页脚、水印*/Rectangle pageSize;PdfCanvas canvas;int n = pdf_document.getNumberOfPages();Log.i("zxd", "createPDF: " + n);for (int i = 1; i <= n; i++) {PdfPage page = pdf_document.getPage(i);Log.i("zxd", "createPDF page: " + page.getPageSize());pageSize = page.getPageSize();canvas = new PdfCanvas(page);// 页眉canvas.beginText().setFontAndSize(font, 7).moveText(pageSize.getWidth() / 2 - 18, pageSize.getHeight() - 10).showText("我是页眉").endText();
​// 页脚canvas.setStrokeColor(text_color).setLineWidth(.2f).moveTo(pageSize.getWidth() / 2 - 30, 20).lineTo(pageSize.getWidth() / 2 + 30, 20).stroke();canvas.beginText().setFontAndSize(font, 7).moveText(pageSize.getWidth() / 2 - 6, 10).showText(String.valueOf(i)).endText();
​// 水印Paragraph p = new Paragraph("Quinto").setFontSize(60);canvas.saveState();PdfExtGState gs1 = new PdfExtGState().setFillOpacity(0.2f);canvas.setExtGState(gs1);document.showTextAligned(p, pageSize.getWidth() / 2, pageSize.getHeight() / 2,pdf_document.getPageNumber(page),TextAlignment.CENTER, VerticalAlignment.MIDDLE, 45);canvas.restoreState();}
​// 关闭document.close();Toast.makeText(this, "PDF文件已生成", Toast.LENGTH_SHORT).show();} else {//没权限//requestPermission();}
}

注意事项

1.pdfdocument.getPageSize()未设置为对象iText7的实例,获取页面大小的时候竟然报错,原因是立即刷新的参数设置成true了

可以告诉文档在默认情况下不要刷新其内容,方法是将false传递给构造函数中的第三个参数(immediateflush)

Document document = new Document(pdf_document, PageSize.A4, false);

pdfdocument.getPageSize()未设置为对象iText7的实例

2.如果图片资源没找到,会报io错误

2.2 7.x的基础使用

2.2.1 显示中文

itext7在使用默认字体显示中文的时候,由于默认字库不支持中文,生成的pdf中的中文会显示空白,要解决这个问题需要自己引入字体。

1.下载一个中文的字体(.ttf文件,SourceHanSansCN.ttf)

2.加载本地字体样式

InputStream inputStream = new FileInputStream(new File("SourceHanSansCN.ttf"));
//第三个参数为embedded,是否为内置字体,这里是自己提供的所以传false
PdfFont font = PdfFontFactory.createFont(IOUtils.toByteArray(inputStream), PdfEncodings.IDENTITY_H, false);

3.设置字体

//默认是A4纸大小
Document document = new Document(pdfDocument, new PageSize());
document.setFont(font);

2.2.2 分辨率

如果有pdf打印的需求,涉及到分辨率的问题。

在itext中除了插入的图片外其他都是矢量图所以不必担心分辨率的问题,只需要保证插入图片的分辨率即可,在itext中生成图片的分辨率默认是72dpi,这里是需要做一些处理的,如下:

int defaultDpi = 72;
int targetDpi = 300;
Image test = new Image(ImageDataFactory.create("test.jpg"));
test.scale(defaultDpi/targetDpi, defaultDpi/targetDpi);

2.2.3 布局

Itext坐标系如下图,当使用绝对布局的时候需要计算元素距离左侧和下侧的长度,当使用相对布局的时候,元素则是自上往下排列。

坐标原点图

绝对布局
setFixedPosition(float left, float bottom, float width)
相对布局

使用相对布局时,不需要setFixedPosition,只需要设置距离上下左右的长度即可。

setMarginLeft(float value);
setMarginRight(float value);
setMarginBottom(float value);
setMarginTop(float value);
setMargin(float commonMargin);

2.2.4 自动分页+生成页码

在使用绝对布局的时候,大部分情况下页面内容是固定大小的,位置也是固定的,分页也需要自己写代码来进行控制。但是如果pdf的内容不是固定的,这时候如果使用绝对布局就不是那么的灵活了,还需要自己计算元素的高度也设置绝对位置,这个时候我们选择使用相对布局则会更合适、简单一些。代码如下:
​
class PageEventHandler implements IEventHandler {private Document document;private PdfFont font;
​//由于需要统一和汉字的字体,所以加了一个pdffont参数,没有此需求的可以不加public PageEventHandler(Document document, PdfFont font){this.document = document;this.font = font;}
​@Overridepublic void handleEvent(Event event) {PdfDocumentEvent pdfEvent = (PdfDocumentEvent) event;PdfPage page = pdfEvent.getPage();PdfDocument pdfDoc = pdfEvent.getDocument();
​//获取当前页码int pageNumber = pdfDoc.getPageNumber(page);PdfCanvas pdfCanvas = new PdfCanvas(page.newContentStreamBefore(), page.getResources(), pdfDoc);
​//在距离上个元素50的距离处写页码this.document.setTopMargin(50f);
​pdfCanvas.beginText().setFontAndSize(this.font, 32)//在页面一般宽的地方写上当前页面,由于字体定位的原点也在左下角,所以这里x轴减掉了页码宽度的一半,确保页码是写在中间的位置//y轴是距离底部20px.moveText(PageSize.A4.getWidth()/2-32/2, 20f).showText(String.valueOf(pageNumber)).endText();pdfCanvas.release();
​}
}
​
//使用
pdfDocument.addEventHandler(PdfDocumentEvent.START_PAGE, new PageEventHandler(document, font));

2.2.5 常用组件

table
//不指定table每一列的宽度,根据列的内容自适应
public Table(int numColumns);
//指定每一列的宽度
public Table(float[] pointColumnWidths);
//向table里面添加单元格,默认是横着加,达到指定列数后,自动换行
public Table addCell(Cell cell);
//设置table或cell的边框,这里需要注意,如果不想显示边框,需要在每一个cell中都设置border为none,只设置table的边框还是会显示边框的
public T setBorder(Border border);
//无边框
cell.setBorder(Border.NO_BORDER);
//实线边框
cell.setBorder(new SolidBorder(1));
//虚线边框
cell.setBorder(new DashedBorder(1));
//四个都是圆角
cell.setBorderRadius(new BorderRadius(10f));
//圆角-右下角
cell.setBorderBottomRightRadius(new BorderRadius(10f));
//圆角-左下角
cell.setBorderBottomLeftRadius(new BorderRadius(10f));
//圆角-右上角
cell.setBorderTopRightRadius(new BorderRadius(10f));
//圆角-左上角
cell.setBorderTopLeftRadius(new BorderRadius(10f));
//关于圆角这一部分,table中的圆角,似乎设置了并不能生效,不过可以通过将外围的table的border设置为none,内部的cell设置边框实现
用table实现一个进度条
  • 思路:外层一个一行一列的table,内部cell再套一个一行一列的table作为实际的进度,根据百分比计算内部table的宽度

//percent这里传的是小数
public void processBar(Document document, float width, float percent){float processWidth = width * percent;DeviceRgb processColor = new DeviceRgb(11,11,11);//随便写个颜色吧DeviceRgb processBgColor = new DeviceRgb(101,11,11);//随便写个颜色吧Table table = new Table(new float[]{width}).setMargin(0).setPadding(0);//把不必要的空隙都扼杀在摇篮里Table processTable = new Table(new float[]{processWidth}).setMargin(0).setPadding(0);processTable.addCell(new Cell().setBorder(Border.NO_BORDER).setMargin(0).setPadding(0).setBackgroundColor(processColor));table.addCell(new Cell().setBorder(Border.NO_BORDER).setBackgroundColor(processBgColor).setMargin(0).setPadding(0).setBorder(Border.NO_BORDER).add(processTable));
​
}
Paragraph

paragraph应该是最经常使用的一个类了,pdf中写文字都会用到这个类。

Paragraph para = new Paragraph("我是一个paragraph").setFontSize(14)//设置字体大小.setBold()//设置文字为粗体.setFontColor(new DeviceRgb(0,0,0))//设置字体颜色.setTextAlignment(TextAlignment.CENTER)//文字水平居中.setFixedLeading(14);//类似于css中的行高

有的时候会有一些需求是,同一段落的一段文字中有部分文字需要设置成别的颜色或样式样式,这时候可以Text来处理,如下:

//这种处理方式不能处理加粗的问题,如果想要加粗的文字正好在段落的中间,但是如果设置为粗体会导致整段文字都变成粗体(斜体是同理的)
para.add(new Text("我想与众不同").setFontSize("20").setFontColor(new DeviceRgb(255,255,255)));

Image
//图片分辨率问题见上面分辨率部分
Image image = new Image(ImageDataFactory.create("/home/test.jpg"));

参考:Itext7生成pdf最全api总结

2.2.6 基本使用

private void pdf1() {path = getExternalFilesDir("").getAbsolutePath() + "/itext_basic.pdf";PdfWriter writer;//创建一个写入传递的输出流的 PdfWriter。try {writer = new PdfWriter(new FileOutputStream(path));PdfFont font = PdfFontFactory.createFont(StandardFonts.TIMES_ROMAN);PdfDocument pdf = new PdfDocument(writer);Document document = new Document(pdf);Text text = new Text("Hello World PDF created using iText").setFont(font).setFontSize(15).setFontColor(ColorConstants.MAGENTA);//Add paragraph to the documentdocument.add(new Paragraph(text));document.close();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}
}

2.2.7 字体样式

try {PdfDocument pdf = new PdfDocument(new PdfWriter(path));PdfFont font = PdfFontFactory.createFont(StandardFonts.COURIER);Style style = new Style().setFont(font).setFontSize(14).setFontColor(ColorConstants.RED).setBackgroundColor(ColorConstants.YELLOW);
​Document document = new Document(pdf);document.add(new Paragraph().add("In this PDF, ").add(new Text("Text is styled").addStyle(style)).add(" using iText ").add(new Text("Style").addStyle(style)).add("."));document.close();
​
} catch (IOException e) {e.printStackTrace();
}

2.2.8 txt转pdf

private void pdf3(String source, String des) {try {BufferedReader br = new BufferedReader(new FileReader(source));PdfDocument pdf = new PdfDocument(new PdfWriter(des));Document document = new Document(pdf);String line;PdfFont font = PdfFontFactory.createFont(StandardFonts.COURIER);while ((line = br.readLine()) != null) {document.add(new Paragraph(line).setFont(font));}br.close();document.close();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}
}

参考:使用 iText 7在 Java 中生成中文PDF

2.3 打开pdf

/*** 打开PDF文件*/
private void openPDF() {new Handler().postDelayed(new Runnable() {@Overridepublic void run() {try {FileUtils.openFile(context, new File(path));} catch (Exception e) {Log.e("Exception", e.toString());}}}, 1000);
}

打开PDF文件

/*** 打开PDF文件** @param context* @param url* @throws ActivityNotFoundException* @throws IOException*/
public static void openFile(Context context, File url) throws ActivityNotFoundException {if (url.exists()) {Uri uri = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".fileprovider", url);
​String urlString = url.toString().toLowerCase();
​Intent intent = new Intent(Intent.ACTION_VIEW);intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);/*** Security*/List<ResolveInfo> resInfoList = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);for (ResolveInfo resolveInfo : resInfoList) {String packageName = resolveInfo.activityInfo.packageName;context.grantUriPermission(packageName, uri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);}
​// 通过比较url和扩展名,检查您要打开的文件类型。// 当if条件匹配时,插件设置正确的意图(mime)类型// 所以Android知道用什么程序打开文件if (urlString.toLowerCase().contains(".doc")|| urlString.toLowerCase().contains(".docx")) {// Word documentintent.setDataAndType(uri, "application/msword");} else if (urlString.toLowerCase().contains(".pdf")) {// PDF fileintent.setDataAndType(uri, "application/pdf");} else if (urlString.toLowerCase().contains(".ppt")|| urlString.toLowerCase().contains(".pptx")) {// Powerpoint fileintent.setDataAndType(uri, "application/vnd.ms-powerpoint");} else if (urlString.toLowerCase().contains(".xls")|| urlString.toLowerCase().contains(".xlsx")) {// Excel fileintent.setDataAndType(uri, "application/vnd.ms-excel");} else if (urlString.toLowerCase().contains(".zip")|| urlString.toLowerCase().contains(".rar")) {// ZIP fileintent.setDataAndType(uri, "application/trap");} else if (urlString.toLowerCase().contains(".rtf")) {// RTF fileintent.setDataAndType(uri, "application/rtf");} else if (urlString.toLowerCase().contains(".wav")|| urlString.toLowerCase().contains(".mp3")) {// WAV/MP3 audio fileintent.setDataAndType(uri, "audio/*");} else if (urlString.toLowerCase().contains(".gif")) {// GIF fileintent.setDataAndType(uri, "image/gif");} else if (urlString.toLowerCase().contains(".jpg")|| urlString.toLowerCase().contains(".jpeg")|| urlString.toLowerCase().contains(".png")) {// JPG fileintent.setDataAndType(uri, "image/jpeg");} else if (urlString.toLowerCase().contains(".txt")) {// Text fileintent.setDataAndType(uri, "text/plain");} else if (urlString.toLowerCase().contains(".3gp")|| urlString.toLowerCase().contains(".mpg")|| urlString.toLowerCase().contains(".mpeg")|| urlString.toLowerCase().contains(".mpe")|| urlString.toLowerCase().contains(".mp4")|| urlString.toLowerCase().contains(".avi")) {// Video filesintent.setDataAndType(uri, "video/*");} else {// 如果你愿意,你也可以为任何其他文件定义意图类型// 另外,使用下面的else子句来管理其他未知扩展// 在这种情况下,Android将显示设备上安装的所有应用程序// 因此您可以选择使用哪个应用程序intent.setDataAndType(uri, "*/*");}intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);context.startActivity(intent);} else {Toast.makeText(context, "文件不存在", Toast.LENGTH_SHORT).show();}
}

manifest.xml

<providerandroid:name="androidx.core.content.FileProvider"android:authorities="com.zg.pdfdemo.fileprovider"android:exported="false"android:grantUriPermissions="true"><meta-dataandroid:name="android.support.FILE_PROVIDER_PATHS"android:resource="@xml/provider_paths" />
</provider>

provider_paths

<?xml version="1.0" encoding="utf-8"?>
<paths><external-path name="external_files" path="."/>
</paths>

2.4 pdfRender的简单使用

@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
private void pdf4() {path = getExternalFilesDir("").getAbsolutePath() + "/itext_basic.pdf";try {//  1.创建文件File pdfFile = new File(path);//  2.获取 ParcelFileDescriptor 对象ParcelFileDescriptor parcelFileDescriptor = ParcelFileDescriptor.open(pdfFile, ParcelFileDescriptor.MODE_READ_ONLY);//  3.创建PdfRenderer对象PdfRenderer renderer = new PdfRenderer(parcelFileDescriptor);
​//渲染page数据到bitmap//1、获取页码数据Page对象PdfRenderer.Page page = renderer.openPage(0);int pageCount = renderer.getPageCount();Log.i("zxd", "pdf4: 总数=" + pageCount);
​//2.创建ARGB_8888 的bitmapBitmap bitmap = Bitmap.createBitmap(page.getWidth(), page.getHeight(), Bitmap.Config.ARGB_8888);//3.渲染page.render(bitmap, null, null, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY);//渲染到iv中binding.iv.setImageBitmap(bitmap);//关闭当前page数据page.close();
​} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}
}

总结

优点:本身是Android提供的,比较轻量无需依赖第三方SDK,核心代码都是native实现,执行效率比较高

缺点:只能在Android5.0 或以上版本使用,由于实现方式是native 所以无法自己定制渲染算法,以及方式、使用时还需要自己控制线程安全比较繁琐

参考:

[API Reference Document](https://www.apiref.com/)

Android PdfRenderer 简单使用

Android使用pdfRenderer实现PDF展示功能

itext5

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/1539.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SpringCloud(二)Eureka简介与依赖导入

一、Eureka Eureka能够自动注册并发现微服务&#xff0c;然后对服务的状态、信息进行集中管理&#xff0c;这样当我们需要获取其他服务的信息时&#xff0c;我们只需要向Eureka进行查询就可以了。 像这样的话&#xff0c;服务之间的强关联性就会被进一步削弱。 二、服务注册与…

详解GPT技术发展脉络

文章目录 前言关于本篇的分享内容大语言模型大模型语言模型 百花齐放TransformerAuto-RegressiveResnetLayer-NormMaskScaled Dot-Product AttentionMulti-Head AttenionSelf-AttentionPositional Encoding关于并行计算关于长程依赖Transformer演化 GPT SeriesGPT-1GPT-2GPT-3 …

aidl的学习(1)aidl中java.lang.RuntimeException: Didn‘t create service “XXX“

1、build中版本号为30及以上时&#xff0c;aidl无效&#xff0c;解决方案 ①在客户端的manifest.xml中添加一下代码&#xff0c;其中代码中的包名为服务端的包名 <manifest> ... <application> ....</application> <queries ><package android:na…

如何在 Ubuntu 20.04 桌面上启用/禁用 wayland

Wayland 是一种通信协议&#xff0c;指定显示服务器与其客户端之间的通信。 默认情况下&#xff0c;Ubuntu 20.04 桌面不会启动 Wayland&#xff0c;而是加载 Xorg 显示服务器X11。 在本教程中您将学习&#xff1a; 如何启用 Wayland如何禁用 Wayland 类别要求、约定或使用的…

【自动驾驶汽车量子群粒子过滤器】用于无人驾驶汽车列车定位的量子粒子滤波研究(Matlab代码实现)

&#x1f4a5;&#x1f4a5;&#x1f49e;&#x1f49e;欢迎来到本博客❤️❤️&#x1f4a5;&#x1f4a5; &#x1f3c6;博主优势&#xff1a;&#x1f31e;&#x1f31e;&#x1f31e;博客内容尽量做到思维缜密&#xff0c;逻辑清晰&#xff0c;为了方便读者。 ⛳️座右铭&a…

web前端项目使用electron打包成跨平台桌面端程序(Windows)

文章目录 Electron是什么&#xff1f;快速入门基本使用要求从github下载一个开源项目执行启动脚本运行项目安装electron依赖包编写electron入口文件&#xff0c;在package.json中配置入口文件路径和electron执行脚本启动electron脚本&#xff0c;运行electron应用 应用打包Wind…

1.监控分布式--zabbix

文章目录 监控分布式-zabbix、prometheus概念工作原理功能组件部署zabbix安装Nginx和PHP环境部署数据库编码安装zabbix编译安装zabbix server客户端安装zabbix agent服务 监控分布式-zabbix、prometheus 利用一个优秀的监控软件&#xff0c;我们可以: 通过一个友好的界面进行…

简单爬虫项目练习

爬虫项目练习 前言任务基本爬虫框架URL管理器Html 下载器HTML 解析器数据存储器爬虫调度器效果分析 前言 自学&#xff0c;参考书籍为 Python爬虫开发与项目实战 &#xff0c;具体参考了该书的第六章。过程中出现两个问题&#xff1a; 在 Pycharm 上实现时发现有些库名更改及…

计算机网络——数据链路层

文章目录 **1 数据链路层的功能****1.1 为网络层提供服务****1.2 链路管理****1.3 帧定界&#xff0c;帧同步与透明传输****1.4 流量控制****1.5 差错控制** **2 组帧****2.1 字符计数法****2.2 字符填充的首尾定界符法****2.3 零比特填充的首尾标志法****2.4 违规编码法** **3…

10.6.5 【Linux】分区命令: split

如果你有文件太大&#xff0c;导致一些携带式设备无法复制的问题&#xff0c;split可以将一个大文件&#xff0c;依据文件大小或行数来分区&#xff0c;可以将大文件分区成为小文件&#xff0c;快速有效。 将文件分区的话&#xff0c;使用-b size来将一个分区的文件限制其大小&…

YOLOv8的目标对象的分类,分割,跟踪和姿态估计的多任务检测实践(Netron模型可视化)

YOLOv8是目前最新版本&#xff0c;在以前YOLO版本基础上建立并加入了一些新的功能&#xff0c;以进一步提高性能和灵活性&#xff0c;是目前最先进的模型。YOLOv8旨在快速&#xff0c;准确&#xff0c;易于使用&#xff0c;使其成为广泛的目标检测和跟踪&#xff0c;实例分割&a…

模拟行走机器人-python

leetcode第874题 链接https://leetcode.cn/problems/walking-robot-simulation 机器人在一个无限大小的 XY 网格平面上行走&#xff0c;从点 (0, 0) 处开始出发&#xff0c;面向北方。该机器人可以接收以下三种类型的命令 commands &#xff1a; -2 &#xff1a;向左转 90 度…

Hadoop——大数据生态体系详解

一.大数据概论 1.1 大数据概念 大数据&#xff08;big data&#xff09;&#xff1a;指无法在一定时间范围内用常规软件工具进行捕捉、管理 和处理的数据集合&#xff0c;是需要新处理模式才能具有更强的决策力、洞察发现力和流程 优化能力的海量、高增长率和多样化的信息资产…

【无标题】使用html2canvas和jspdf生成的pdf在不同大小的屏幕下文字大小不一样

问题&#xff1a;使用html2canvas和jspdf生成的pdf在不同大小的屏幕下文字大小不一样&#xff0c;在mac下&#xff0c;一切正常&#xff0c;看起来很舒服&#xff0c;但是当我把页面放在扩展屏幕下&#xff08;27寸&#xff09;&#xff0c;再生成一个pdf&#xff0c;虽然排版一…

ARM Coresight 系列文章 8 - ARM Coresight 通过 APBIC 级联使用

文章目录 APBIC 回顾APBIC 级联 上篇文章&#xff1a;ARM Coresight 系列文章 7 - ARM Coresight 通过 AHB-AP 访问 异构 cpu 内部 coresight 组件 APBIC 回顾 APBIC 可以连接一个或者多个APB BUS masters&#xff0c; 例如连接一个 APB-AP 组件和带有 APB 接口的 Processor&…

【C++】STL——vector的使用、 vector增删查改函数的介绍和使用、push_back和pop_back、operator[]

文章目录 1.vector的使用2.vector的增删查改&#xff08;1&#xff09;push_back 尾插&#xff08;2&#xff09;pop_back 尾删&#xff08;3&#xff09;find 查找&#xff08;4&#xff09;insert 在position之前插入val &#xff08;5&#xff09;erase 删除指定位置的数据&…

手搓GPT系列之 - 通过理解LSTM的反向传播过程,理解LSTM解决梯度消失的原理 - 逐条解释LSTM创始论文全部推导公式,配超多图帮助理解(中篇)

近期因俗事缠身&#xff0c;《通过理解LSTM的反向传播过程&#xff0c;理解LSTM解决梯度消失的原理 - 逐条解释LSTM创始论文全部推导公式&#xff0c;配超多图帮助理解》的中下篇鸽了实在太久有些不好意思了。为了避免烂尾&#xff0c;还是抽时间补上&#xff08;上篇在此&…

带你用Python制作7个程序,让你感受到端午节的快乐

名字:阿玥的小东东 学习:Python、C/C++ 主页链接:阿玥的小东东的博客_CSDN博客-python&&c++高级知识,过年必备,C/C++知识讲解领域博主 目录 前言 程序1:制作粽子

Spring Boot进阶(57):Spring中什么时候不要用@Autowired注入 | 超级详细,建议收藏

1. 前言&#x1f525; 注解Autowired&#xff0c;相信对于我们Java开发者而言并不陌生吧&#xff0c;在SpringBoot或SpringCloud框架中使用那是非常的广泛。但是当我们使用IDEA编辑器开发代码的时候&#xff0c;经常会发现Autowired 注解下面提示小黄线警告&#xff0c;我们把小…

Redis【实战篇】---- 分布式锁

Redis【实战篇】---- 分布式锁 1. 基本原理和实现方式对比2. Redis分布式锁的实现核心思路3. 实现分布式锁版本一4. Redis分布式锁误删情况说明5. 解决Redis分布式锁误删问题6. 分布式锁的原子性问题7. Lua脚本解决多条命令原子性问题8. 利用Java代码调试Lua脚本改造分布式锁 1…