Android如何通过编码读取PDF文件

发布于 2024-12-03 08:25:35 字数 1568 浏览 1 评论 0原文

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);
    Button OpenPDF = (Button) findViewById(R.id.button);
    OpenPDF.setOnClickListener(new View.OnClickListener()
    { 
        public void onClick(View v) 
        {
            File pdfFile = new File("res/raw/comic.pdf");
            if(pdfFile.exists()) 
            {
               //Uri path = Uri.fromFile(pdfFile); 
            Uri path = Uri.parse("android.resource://" + getPackageName() + "/ R.raw.comic.pdf");

                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

               // Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
               // Intent pdfIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("content://package.name/" + pdfFile));
              //  pdfIntent.setDataAndType(path, "/assets/arduino-comic-latest.pdf");
               // pdfIntent.setType("application/pdf");
               // pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                try
                {
                    startActivity(intent);
                }
                catch(ActivityNotFoundException e)
                {
                    Toast.makeText(MainActivity.this, "No Application available to view pdf", Toast.LENGTH_LONG).show(); 
                }
            }

        }
    });

我已经完成了这段代码,但是找不到文件的路径。我必须做什么?任何人都可以帮助我

,谢谢

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);
    Button OpenPDF = (Button) findViewById(R.id.button);
    OpenPDF.setOnClickListener(new View.OnClickListener()
    { 
        public void onClick(View v) 
        {
            File pdfFile = new File("res/raw/comic.pdf");
            if(pdfFile.exists()) 
            {
               //Uri path = Uri.fromFile(pdfFile); 
            Uri path = Uri.parse("android.resource://" + getPackageName() + "/ R.raw.comic.pdf");

                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

               // Intent pdfIntent = new Intent(Intent.ACTION_VIEW);
               // Intent pdfIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("content://package.name/" + pdfFile));
              //  pdfIntent.setDataAndType(path, "/assets/arduino-comic-latest.pdf");
               // pdfIntent.setType("application/pdf");
               // pdfIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                try
                {
                    startActivity(intent);
                }
                catch(ActivityNotFoundException e)
                {
                    Toast.makeText(MainActivity.this, "No Application available to view pdf", Toast.LENGTH_LONG).show(); 
                }
            }

        }
    });

I have done this code but this is not find the path of the file.what I have to do??can Anyone help me

Thankyou

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那片花海 2024-12-10 08:25:35

你不能直接这样做,你必须使用 Native Library 来阅读 PDF...库可能是 iText、jPedal、Mupdf、Pdfbox...等。Google 一下

you cant do that directly, you have to use Native Library for reading PDF... library may be iText, jPedal, Mupdf, Pdfbox... etc. Google it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文