Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/205.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 第三方应用程序不读取我的pdf文件_Java_Android_Pdf - Fatal编程技术网

Java 第三方应用程序不读取我的pdf文件

Java 第三方应用程序不读取我的pdf文件,java,android,pdf,Java,Android,Pdf,我是android新手,只是想知道我的代码有什么问题,当我从列表中选择时,它不会读取我的pdf文件。 这是我的密码: public class ChoosefileActivity extends ListActivity { private List<String> item = null; private List<String> path = null; private String root; private TextView myPath; public fi

我是android新手,只是想知道我的代码有什么问题,当我从列表中选择时,它不会读取我的pdf文件。 这是我的密码:

public class ChoosefileActivity extends ListActivity {

private List<String> item = null;
private List<String> path = null;
private String root;
private TextView myPath;
public final static String loc = "com.example.mypdfviewer.loc";
    private String dirPath;

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

    myPath = (TextView)findViewById(R.id.path);
        root = Environment.getExternalStorageDirectory().getPath();
        getDir(root);
    }

private void getDir(String dirPath)
    {
    myPath.setText(dirPath); 
    item = new ArrayList<String>();
    path = new ArrayList<String>();
    File f = new File(dirPath);
    File[] files = f.listFiles();

    if(!dirPath.equals(root))
    {
        item.add(root);
        path.add(root);
        item.add("../");
        path.add(f.getParent());    
    }
    for(int i=0; i < files.length; i++)
    {
        File file = files[i];

        if(!file.isHidden() && file.canRead()){
        path.add(file.getPath());
        if(file.isDirectory()){
        item.add(file.getName() + "/");
    }
    else
    {
        item.add(file.getName());
    }
    }   
    }
    ArrayAdapter<String> fileList = new ArrayAdapter<String>(this, R.layout.row, item);
    setListAdapter(fileList);
    }

protected void onListItemClick(ListView l, View v, int position, long id) 
    {
    File file = new File(path.get(position));

    if (file.isDirectory())
        {
        if(file.canRead()){
            getDir(path.get(position));
        }
        else
        {
            new AlertDialog.Builder(this)
            .setIcon(R.drawable.ic_launcher)
            .setTitle("[" + file.getName() + "] folder can't be read!")
            .setPositiveButton("OK", null).show();
        }   
        }
        else 
        {
            new AlertDialog.Builder(this)
            .setIcon(R.drawable.ic_launcher)
            .setTitle("Open: " + "[" + file.getName() + "]")
            .setPositiveButton("OK", new DialogInterface.OnClickListener() 
            {
                public void onClick(DialogInterface dialog, int v) 
                {   

                File file = new File(**dirPath**);
                                Uri path = Uri.fromFile(file);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(intent);
                }
                }) 
                .setNegativeButton("Cancel", new DialogInterface.OnClickListener() 
                {
                public void onClick(DialogInterface dialog, int which) 
                {
                dialog.cancel();
                }
                }).show();
                }
                }
            }

此代码可以显示在任何可以读取pdf的应用程序中。我只是用它来检查文件是否有问题,但我发现我认为它在我的代码中。我需要的不是硬编码的路径。请帮帮我。

您如何构造
新文件()上使用的
**dirPath**

如果硬编码的路径在工作,而另一条路径不工作,我猜路径可能是错误的。尝试放置一个Log.d并验证在
**dirPath**

您是否尝试使用getAbsolutePath而不是getPath


查看此线程,也许可以帮助您-

在访问.pdf文件之前,为什么不打印连接的路径呢。记录下来看看是否正确。
File file = new File("**/mnt/sdcard/pdf_File/another.pdf**");
                Uri path = Uri.fromFile(file);
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(path, "application/pdf");
                intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(intent);