如何在kotlin android中将pdf文件编码为base64字符串

卧疾丰暇豫,翰墨时间作。这篇文章主要讲述如何在kotlin android中将pdf文件编码为base64字符串相关的知识,希望能为你提供帮助。
无法将pdf文件转换为android pie中的base64,文件路径返回的是“content://com.android.providers.downloads.documents/document/4402”,这不是真正的路径因此unable to access the file
答案不鼓励支持file:///path uris,后来又放弃了。
您需要使用ContentResolver访问content://auth/path uri。
另一答案试试这个

fun convertToBase64(attachment: File): String { return Base64.encodeToString(attachment.readBytes(), Base64.NO_WRAP) }

另一答案我们可以将以下整个类用于我们的项目以获得真正的路径,我得到了解决我的问题的方法
https://github.com/flutter/plugins/blob/master/packages/image_picker/android/src/main/java/io/flutter/plugins/imagepicker/FileUtils.java
之后,我使用以下代码将pdf文件转换为编码为base64字符串
【如何在kotlin android中将pdf文件编码为base64字符串】fun convertToBase64(attachment: File): String { return Base64.encodeToString(attachment.readBytes(), Base64.NO_WRAP) }

    推荐阅读