gpt4 book ai didi

android - 如何从 Assets 或原始文件夹中查看 pdf?

转载 作者:行者123 更新时间:2023-11-29 15:03:44 25 4
gpt4 key购买 nike

我正在使用 MuPDF 库在我的应用程序中显示 pdf。可以查看保存在内部或外部存储器中的 PDF,但如果它们存储在应用程序的 Assets 文件夹中,应用程序不会显示 pdf...如何在应用程序中查看 PDF?

我看到的解决方案说我们可以将我们的应用程序内 PDF 复制到应用程序关联的文件夹中,然后在以后使用它们......但我听不懂..

这是代码-

public class MainActivity extends Activity {

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

Button showPDFBtn = (Button)findViewById(R.id.btn_show_pdf);
showPDFBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {

Uri uri = Uri.parse("file:///android_asset/test.pdf");
Intent intent = new Intent(MainActivity.this, MuPDFActivity.class);
intent.setAction(Intent.ACTION_VIEW);
intent.setData(uri);
startActivity(intent);



}}
);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
}

最佳答案

试试下面的代码

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

InputStream in = null;
OutputStream out = null;
File file = new File(getFilesDir(), "git.pdf");
try
{
in = assetManager.open("git.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() + "/git.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);
}
}

确保包含

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

在 list 中

关于android - 如何从 Assets 或原始文件夹中查看 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40838153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com