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.
我需要编写一个应用程序来修改"PDF template"其中包含某种形式的文件。 我的应用程序应该复制该模板,在里面填写表格并用任意名称保存(保留原始模板用于其他任务)。如何将该文件添加到我的项目中,并在我的代码中检索它?
"PDF template"
通常这些文件放在asset项目的文件夹中。
asset
然后您可以使用
getAssets().open("filename");
在使用流阅读器打开文本文件的情况下
BufferedReader reader = new BufferedReader( new InputStreamReader(getAssets().open("filename.txt")));
我不知道打开/编辑 pdf 文件所需的“协议”。