gpt4 book ai didi

android - 在我的应用程序中打开并查看 pdf

转载 作者:搜寻专家 更新时间:2023-11-01 09:06:53 25 4
gpt4 key购买 nike

使用此代码:

try {

URL url = new URL(aurl[0]);
URLConnection conexion = url.openConnection();
conexion.connect();

int lenghtOfFile = conexion.getContentLength();
Log.d("ANDRO_ASYNC", "Lenght of file: " + lenghtOfFile);

InputStream input = new BufferedInputStream(url.openStream());
FileOutputStream fos = openFileOutput("try.pdf", Context.MODE_PRIVATE);
//PARA DESCARGARLO EN SD//
// OutputStream output = new FileOutputStream("/sdcard/prueba.pdf");

byte data[] = new byte[1024];

long total = 0;

while ((count = input.read(data)) != -1) {
total += count;
publishProgress(""+(int)((total*100)/lenghtOfFile));
fos.write(data, 0, count);
}

fos.flush();
fos.close();
input.close();
} catch (Exception e) {}
return null;

我在应用程序中保留了 8 MB 大小的 PDF。我用了几个代码试图打开它并查看它,但找不到方法。

有什么建议吗?

最佳答案

请参阅下面的 SO Answer 链接,以使用 PDFViewer 从 sdcard 读取 pdf。

Read PDF Files

关于android - 在我的应用程序中打开并查看 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11224479/

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