2013-07-04 68 views
0

我是新來的android只是想知道我的代碼有什麼問題,當我從列表中選擇時,它不會讀取我的pdf文件。 這裏是我的代碼:第三方應用程序不會讀取我的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(); 
       } 
       } 
      } 

它顯示與錯誤對話框,它無法讀取該文件 但是當我使用硬編碼的路徑,像這樣:

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); 

這個代碼可以在任何顯示可以閱讀pdf的應用程序。我只是用它來檢查文件是否有問題,但我發現我認爲它在我的代碼中。我需要的不是硬編碼路徑。請請幫助我。

+0

你爲什麼不打印您串聯路徑,您訪問的.pdf文件之前。記錄它以查看它是否正確。 – g00dy

回答