I am trying to open a CSV file downloaded into internal storage for reading purpose alone. This is the code I have used:
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Toast;
import java.io.FileInputStream;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
public void onClick(View v) {
    try {
        String FileName = "/storage/emulated/0/Download/MyDocument.csv";
        FileInputStream fis = openFileInput(FileName);
        fis.read();
        fis.close();
        Toast.makeText(getBaseContext(),"File Access Permitted",Toast.LENGTH_SHORT).show();
    }
    catch (Exception e) {
        Toast.makeText(getBaseContext(),"File Access Denied",Toast.LENGTH_SHORT).show();
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}
} 
While the file is downloaded and I am able to open it in File Manager, the above code does not work. How do I achieve the required functionality?
 
     
    