我想用我的应用程序提供一些pdf文档

时间:2012-10-01 09:54:41

标签: java android

在通过互联网进行某些研究和查询后,我发现我无法将这些文件放在资源文件夹中,因为这些文件对我的应用程序是私有的,我希望在按下按钮时调用本机pdf应用程序,重定向用户特定文件。我感到困惑的是如何将文件与我的应用程序捆绑在一起,这样当用户下载或安装我的应用程序时,这些文件就会存储在她的SD卡中。

1 个答案:

答案 0 :(得分:0)

copy your assests files to the sdcard当点击按钮时,打开sdcard中的文件就像这样

 File rootDir = Environment.getExternalStorageDirectory();

 File file = new File(rootDir + "/filepath/"+fileName);//give the file path here
 if(file.exists())
   {
    // do action here
   }