File not found error after selecting a file in android
I want to open a .pdf file in my android app.now i can browse the pdf file and after browsing the file I am getting File Not Found Error when i check the file exist or not. Now after selecting the file my selected file Uri data.getData() is like content://com.android.externalstorage.documents/document/6333-6131:SHIDHIN.pdf and the path when i parse using data.getData().getPath().toString() is like /document/6333-6131:SHIDHIN.pdf Here is my code. Please Help me. // To Browse the file Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("application/pdf"); startActivityForResult