Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要我的 Android 项目中的 pdf 文件的路径。
该文件可以在 raw 或 assets 文件夹中。
我需要获取路线,因为我必须使用文件类调用
例如:文件文件=新文件(路径);
谢谢
图片:
http://img19.imageshack.us/img19/2303/capturaww.png
我不太清楚你的意思,假设你想在你的资产(res 文件)中阅读 PDF 文件,请看这里
但是如果你想获取一个文件夹的文件路径,那么看这里
如何从android中的sd卡获取文件路径
如何从 URI 中获取文件路径?
这是如何获取文件路径的示例(取自第三个链接)
File myFile = new File(uri.toString()); myFile.getAbsolutePath()