尝试在按钮单击时打开pdf时崩溃Android应用程序

时间:2017-03-07 21:19:56

标签: java android

点击按钮时,我正在尝试打开pdf文件(Rota)。

该文件存储在assets文件夹中。单击按钮时应用程序崩溃并关闭。

我认为我的CopyReadAssets方法存在问题,但我不知道是什么。

以下是我正在使用的代码:

import android.content.Intent;
import android.content.res.AssetManager;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.content.Context;

import java.io.IOException;
import java.io.InputStream;
import java.io.File;
import java.io.OutputStream;


public class MainActivity extends AppCompatActivity {
    Context context = this;
    Button currentbutton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    currentbutton = (Button)findViewById(R.id.currentWeekbutton);
    currentbutton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            CopyReadAssets();
        }
    });
}
private void CopyReadAssets()
{
    AssetManager assetManager = getAssets();

    InputStream in;
    OutputStream out;

    File file = new File(getFilesDir(), "Rota.pdf");
    try
    {
        in = assetManager.open("Rota.pdf");
        out = openFileOutput(file.getName(), context.MODE_WORLD_READABLE);

        copyFile(in, out);
        in.close();
        in = null;
        out.flush();
        out = null;
        out.close();

    } catch (Exception e) {
        Log.e("tag", e.getMessage());
    }

    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(
            Uri.parse("File://" + getFilesDir() + "/rota.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);
            }
        }

}

1 个答案:

答案 0 :(得分:0)

  out = openFileOutput(file.getName());

这里你的应用程序会崩溃。你会在logcat中看到错误。

更改为

 out = new FileOutputStream(file.getAbsolutePath());

您不必为此请求写入外部存储权限,因为getFilesDir()是私有内部存储器。