01/10/2018, 09:41

Dùng intent để chọn file để đọc trong android

Em dùng intent để lấy đường dẫn file mình chọn như sau:

Intent inputFile = new Intent(Intent.ACTION_PICK);
        inputFile.setType("*/*");
        inputFile.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(inputFile.createChooser(inputFile, "Select csv"), 1010);

nhưng mà đường dẫn nhận được thì không thể dùng FileInputStream để đọc được ạ.
VD: path nhận được qua intent là: /document/primary:File.csv
path mong muốn để đọc file là: /storage/emulated/0/File.csv

Ho Duc Hieu viết 11:57 ngày 01/10/2018
stackoverflow.com
Tek Yin

How to use intent for choosing file browser to select file

android, android-intent
asked by Tek Yin on 10:42AM - 29 Mar 12
Bài liên quan
0