1

以编程方式从“res/raw”或 assets 文件夹访问 PDF 文件以使用给定的方法进行解析

解释:

现在,该程序从文件管理器访问文件,该文件管理器采用选定的文件路径并将其设置为“mFilename”EditText 字段。下面的显示 PDF 按钮侦听器显示字符串“pdffilename”被分配了包含在“mFilename”EditText 字段中的字符串。PdfViewerActivity 已启动,字符串“pdffilename”作为 Extra 传递。在 onCreate() 中检查意图是否为空。这是我认为可以/应该做出改变的地方。字符串 'pdffilename' 分配了您在下面看到的内容。我想要做的是以两种方式之一存储 PDF 文件......在“res/raw/example_folder/example.pdf”或资产文件夹中。我想用我存储这些 PDF 文件的路径以编程方式分配“pdffilename”。

所以基本上...

  • 我想将 PDF 文件存储在“res/raw/folder_example/example.pdf”或资产文件夹中
  • 我想从代码中访问这些文件,因为我不需要使用文件管理器
  • 无论如何,这将是最大的帮助,我很擅长 Java,但我绝不是超级明星,所以请用你的代码解释一下

非常感谢您,我将随时回复评论并编辑这篇文章。我希望这篇文章对其他用户有所帮助,因此我将发布解决方案的代码。完成时。再次感谢你!

在 PdfFileSelectActivity 中显示 PDF 按钮侦听器...

OnClickListener ShowPdfListener = new OnClickListener()
{
    public void onClick(View v)
    {
        mFilename = (EditText) findViewById(R.id.filename);
        String pdffilename = mFilename.getText().toString();
        Intent intent = new Intent(PdfFileSelectActivity.this,
        PdfViewerActivity.class)
        .putExtra(EXTRA_PDFFILENAME, pdffilename);
        startActivity(intent);
    }
};

PdfViewerActivity 的 onCreate() 从上面的 show PDF Listener 调用...

Intent intent = getIntent();
 
if (intent != null)
{
    if ("android.intent.action.VIEW".equals(intent.getAction()))
    {
        pdffilename = storeUriContentToFile(intent.getData());
    }
    else {
        pdffilename = getIntent().getStringExtra(PdfFileSelectActivity.EXTRA_PDFFILENAME);
    }
}

if (pdffilename == null)
    pdffilename = "no file selected";

setContent(null);

从上面调用的 setContent()(如果需要)...

private void setContent(String password)
{
    try {
        parsePDF(pdffilename, password);
    }
    catch (PDFAuthenticationFailureException e)
    {
        System.out.println("Password needed");
    }
}

从上面调用的 parsePDF()(如果需要)...

    private void parsePDF(String filename, String password) throws PDFAuthenticationFailureException
    {
        long startTime = System.currentTimeMillis();
        try {
            File f = new File(filename);
            long len = f.length();
            if (len == 0) {
                mGraphView.showText("file '" + filename + "' not found");
            }
            else {
                mGraphView.showText("file '" + filename + "' has " + len + " bytes");
                openFile(f, password);
            }
        }
        catch (PDFAuthenticationFailureException e)
        {
            throw e;
        } catch (Throwable e) {
            e.printStackTrace();
            mGraphView.showText("Exception: "+e.getMessage());
        }
        long stopTime = System.currentTimeMillis();
        mGraphView.fileMillis = stopTime-startTime;

   }

再次感谢你!

4

2 回答 2

1

要将其作为资产的输入流访问:

in = new BufferedReader(new InputStreamReader(activity.getAssets().open(yourfile.pdf)));
于 2012-06-13T17:53:12.070 回答
1

经过许多小时和相当多的香烟休息后,这里是解决方案。一旦 readToByteBuffer 返回了一个 ByteBuffer,它就像创建一个接收 ByteBuffer 的新 PDFFile 一样简单。

享受...

ShowPDF 按钮监听器...

OnClickListener ShowPdfListener = new OnClickListener() {
    public void onClick(View v)
    {
        Intent intent = new Intent(PdfFileSelectActivity.this,
        PdfViewerActivity.class);
        startActivity(intent);
    }
};

在 onCreate() PdfViewerActivity...

openFile2(readToByteBuffer(this.getAssets().open("test.pdf")), null);

从这里编辑 readToByteBuffer()

public ByteBuffer readToByteBuffer(InputStream inStream) throws IOException
{
    long startTime = System.currentTimeMillis();
    BufferedReader in = new BufferedReader(new InputStreamReader(this.getAssets().open("test.pdf")));
    StringBuilder total = new StringBuilder();
    String line;
    while ((line = in.readLine()) != null) {
        total.append(line);
    }

    int length = total.length();
    byte[] buffer = new byte[length];
    ByteArrayOutputStream outStream = new ByteArrayOutputStream(length);
    int read;
    while (true) {
      read = inStream.read(buffer);
      if (read == -1)
        break;
      outStream.write(buffer, 0, read);
    }
    ByteBuffer byteData = ByteBuffer.wrap(outStream.toByteArray());
    long stopTime = System.currentTimeMillis();
    mGraphView.fileMillis = stopTime-startTime;
    return byteData;
  }
于 2012-06-13T20:02:03.970 回答