web-dev-qa-db-ja.com

Androidインテントを使用してサーバーからPDFファイルを開く

AndroidでデフォルトのPDFビューアを使用してサーバーからPDFファイルを開く方法をWebで検索しています。私が見つけたのは、最初にファイルをダウンロードしてから、意図的に開始するか、Googleドキュメントでロードすることです。私はこれらすべてをやりたくありません。電話からデフォルトのPDFビューアでサーバーから直接ロードしたいだけです。意図的にビデオURLを開いてみましたが、うまくいきました。しかし、意図的にpdfURLを開くことは機能していません。以下は私のコードです。

private void openFilePDF(){
        try{
            Toast.makeText(getBaseContext(), "Opening PDF... ", Toast.LENGTH_SHORT).show();
            Intent inte = new Intent(Intent.ACTION_VIEW);
            inte.setDataAndType(
                    Uri.parse("http://122.248.233.68/pvfiles/Guide-2.pdf"),
                    "application/pdf");

            startActivity(inte);
            }catch(ActivityNotFoundException e){
                Log.e("Viewer not installed on your device.", e.getMessage());
            }
    }

PDFのURLを意図的にロードする方法はありますか?

8
ksh

最初にダウンローダークラスを作成します

public class Downloader {

    public static void DownloadFile(String fileURL, File directory) {
        try {

            FileOutputStream f = new FileOutputStream(directory);
            URL u = new URL(fileURL);
            HttpURLConnection c = (HttpURLConnection) u.openConnection();
            c.setRequestMethod("GET");
            c.setDoOutput(true);
            c.connect();

            InputStream in = c.getInputStream();

            byte[] buffer = new byte[1024];
            int len1 = 0;
            while ((len1 = in.read(buffer)) > 0) {
                f.write(buffer, 0, len1);
            }
            f.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

その後、インターネットからPDFファイルをダウンロードするアクティビティを作成し、

public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        String extStorageDirectory = Environment.getExternalStorageDirectory()
        .toString();
        File folder = new File(extStorageDirectory, "pdf");
        folder.mkdir();
        File file = new File(folder, "Read.pdf");
        try {
            file.createNewFile();
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        Downloader.DownloadFile("http://122.248.233.68/pvfiles/Guide-2.pdf", file);

        showPdf();
    }
    public void showPdf()
        {
            File file = new File(Environment.getExternalStorageDirectory()+"/Mypdf/Read.pdf");
            PackageManager packageManager = getPackageManager();
            Intent testIntent = new Intent(Intent.ACTION_VIEW);
            testIntent.setType("application/pdf");
            List list = packageManager.queryIntentActivities(testIntent, PackageManager.MATCH_DEFAULT_ONLY);
            Intent intent = new Intent();
            intent.setAction(Intent.ACTION_VIEW);
            Uri uri = Uri.fromFile(file);
            intent.setDataAndType(uri, "application/pdf");
            startActivity(intent);
        }
}

最後に、ついにAndroidManifest.xmlで許可を宣言します

<uses-permission Android:name="Android.permission.INTERNET"></uses-permission>
<uses-permission Android:name="Android.permission.WRITE_EXTERNAL_STORAGE"/>
16
GrIsHu

WebViewを使用してこれを試すことができます。

public class MyPdfViewActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    WebView mWebView=new WebView(MyPdfViewActivity.this);
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.getSettings().setPluginsEnabled(true);
    mWebView.loadUrl("https://docs.google.com/gview?embedded=true&url="+LinkTo);
    setContentView(mWebView);
  }
}
8
Shylendra Madda

私によると、デバイスでPDFファイルを直接開く方法はありません。Androidデバイスを開こうとすると、ブラウザのプロパティが原因でPDFファイルをデバイスにダウンロードします。PDFファイルを開く方法は2つしかありません。

  1. PDF application Intentを使用して、ファイルを開くアプリを選択できます。

  2. ファイルのサーバーURLをGoogleドキュメントのURLに追加してブラウザで開くことができるため、ur PDFファイルがブラウザで開きます

0
Vaibhav Agarwal