当前位置 : 主页 > 手机开发 > android >

android – 使用PDFViewer.jar从assets文件夹中读取pdf

来源:互联网 收集:自由互联 发布时间:2021-06-11
我想使用PDFViewer.jar阅读存储在asset文件夹中的pdf文件, 我试过这种方式,但我收到错误消息,不幸的是它停止了. 谁能帮助我如何实现它. public class MainActivity extends Activity {@Overrideprotected v
我想使用PDFViewer.jar阅读存储在asset文件夹中的pdf文件,

我试过这种方式,但我收到错误消息,不幸的是它停止了.

谁能帮助我如何实现它.

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    CopyReadAssets();

}

private void CopyReadAssets() {
    AssetManager assetManager = getAssets();

    InputStream in = null;
    OutputStream out = null;
    File file = new File(getFilesDir(), "ABC.pdf");
    try {
        in = assetManager.open("ABC.pdf");
        out = openFileOutput(file.getName(), Context.MODE_WORLD_READABLE);

        copyFile(in, out);
        in.close();
        in = null;
        out.flush();
        out.close();
        out = null;
    } catch (Exception e) {
        Log.e("tag", e.getMessage());
    }

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(
            Uri.parse("file://" + getFilesDir() + "/ABC.pdf"),
            "application/pdf");

    startActivity(intent);
}

private void copyFile(InputStream in, OutputStream out) throws IOException {
    byte[] buffer = new byte[1024];
    int read;
    while ((read = in.read(buffer)) != -1) {
        out.write(buffer, 0, read);
    }
}


}

logcat详细信息:

02-05 11:09:05.896: E/AndroidRuntime(6516): FATAL EXCEPTION: main
 02-05 11:09:05.896: E/AndroidRuntime(6516): java.lang.RuntimeException: Unable to start activity  
   ComponentInfo{com.syntel.pdfreader/com.syntel.pdfreader.MainActivity}: 
   android.content.ActivityNotFoundException:   No Activity found to handle Intent {
    act=android.intent.action.VIEW dat=file:///data/data/com.syntel.pdfreader/files/ABC.pdf typ=application/pdf    }
  02-05 11:09:05.896: E/AndroidRuntime(6516):   at    

  android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
  02-05 11:09:05.896: E/AndroidRuntime(6516):   at  
 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
  02-05 11:09:05.896: E/AndroidRuntime(6516):   at 
  android.app.ActivityThread.access$600(ActivityThread.java:141)
 02-05 11:09:05.896: E/AndroidRuntime(6516):    at 
  android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
  02-05 11:09:05.896: E/AndroidRuntime(6516):   at android.os.Handler.dispatchMessage(Handler.java:99)
 02-05 11:09:05.896: E/AndroidRuntime(6516):    at android.os.Looper.loop(Looper.java:137)
02-05 11:09:05.896: E/AndroidRuntime(6516):     at 
  android.app.ActivityThread.main(ActivityThread.java:5041)
02-05 11:09:05.896: E/AndroidRuntime(6516):     at java.lang.reflect.Method.invokeNative(Native Method)
02-05 11:09:05.896: E/AndroidRuntime(6516):     at java.lang.reflect.Method.invoke(Method.java:511)
02-05 11:09:05.896: E/AndroidRuntime(6516):     at 
  com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
 02-05 11:09:05.896: E/AndroidRuntime(6516):    at 
  com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
 02-05 11:09:05.896: E/AndroidRuntime(6516):    at dalvik.system.NativeStart.main(Native Method)
 02-05 11:09:05.896: E/AndroidRuntime(6516): Caused by: android.content.ActivityNotFoundException: No Activit
y found to handle Intent { act=android.intent.action.VIEW 
  dat=file:///data/data/com.syntel.pdfreader/files/ABC.pdf typ=application/pdf }
02-05 11:09:05.896: E/AndroidRuntime(6516):     at  
 android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1622)
02-05 11:09:05.896: E/AndroidRuntime(6516):     at 
android.app.Instrumentation.execStartActivity(Instrumentation.java:1417)
我用这个 Android-Pdf-Viewer-Library创建了我的现场演示

你可以下载我的Demo with Library

网友评论