कन्वर्ट फ़ाइल: Android में फ़ाइल करने के लिए Uri


401

एंड्रॉइड में file: android.net.Uriए से कन्वर्ट करने का सबसे आसान तरीका क्या Fileहै?

निम्नलिखित की कोशिश की, लेकिन यह काम नहीं करता है:

 final File file = new File(Environment.getExternalStorageDirectory(), "read.me");
 Uri uri = Uri.fromFile(file);
 File auxFile = new File(uri.toString());
 assertEquals(file.getAbsolutePath(), auxFile.getAbsolutePath());

यहाँ मेरा समाधान है !! यह अच्छा काम करता है! stackoverflow.com/questions/2789276/…
cesards


क्या दावा करता है?
हुजैफा आसिफ

Uri.fromFile का संदर्भ सिर्फ मुझ पर काम नहीं कर रहा है :(
बे

जवाबों:


781

आप क्या चाहते हैं ...

new File(uri.getPath());

... और नहीं...

new File(uri.toString());

नोट: uri.toString() प्रारूप में एक स्ट्रिंग लौटाता है: "file:///mnt/sdcard/myPicture.jpg"जबकि uri.getPath()प्रारूप में एक स्ट्रिंग लौटाता है "/mnt/sdcard/myPicture.jpg":।


4
दोनों के बीच क्या अंतर है? क्या करता toStringहै?
मर्लिन मॉर्गन-ग्राहम

86
url.toString()निम्नलिखित प्रारूप में एक स्ट्रिंग लौटाएँ: "फ़ाइल: ///mnt/sdcard/myPicture.jpg", जबकि url.getPath()निम्नलिखित प्रारूप में एक स्ट्रिंग लौटाता है: "/mnt/sdcard/myPicture.jpg", अर्थात योजना प्रकार के बिना- तय की।
आदिल हुसैन 14

44
यदि URI एक Images.Media.EXTERNAL_CONTENT_URI है (जैसे गैलरी के लिए Intent.ACTION_PICK से) तो आपको इसे stackoverflow.com/q/6935497-42619
Nuthatch

2
@ शेल्हा ने बहुत आसानी से ImageViews में फ़ाइलें (यहां तक ​​कि URL) लोड करने के लिए पिकासो नामक एक पुस्तकालय की जाँच करें ।
विराट सिंह

18
open failed: ENOENT (No such file or directory)जब मैं इस के साथ दी गई फ़ाइल को खोलने का प्रयास करता हूं, तो अधिकांश समय मुझे मिल जाता है। उदाहरण के लिए, यदि उड़ी एक छवि का कंटेंट उरी है, तो यह निश्चित रूप से काम नहीं करता है।
क्लू

50

लंबे समय तक खोज करने के बाद कि यह मेरे लिए क्या काम करता है:

File file = new File(getPath(uri));


public String getPath(Uri uri) 
    {
        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = getContentResolver().query(uri, projection, null, null, null);
        if (cursor == null) return null;
        int column_index =             cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        String s=cursor.getString(column_index);
        cursor.close();
        return s;
    }

6
managedQueryअब पदावनत हो गया है। getContentResolver().query(...)इसके बजाय उपयोग करें , जो एपीआई 11+ पर काम करता है। एपीआई 11 से अधिक पुराने उपकरणों के लिए एक सशर्त जोड़ें
काइल फाल्कनर

2
यह किसी कारण से मुझे अशक्त कर देता है। और मेरा android uri कुछ इस तरह से लौटा रहा है: {content: //com.android.providers.media.documents/document/image%3A2741} Android.Net.UriInvoker
erkinyldld

यह एक अच्छा समाधान नहीं है क्योंकि यह सभी प्लेटफार्मों पर काम नहीं करेगा। कुछ डिवाइस इस कॉलम को पॉप्युलेट नहीं करते हैं, मैं सुझाव देता हूं कि कंटेंट प्रोवाइडर को इसे हैंडल करें जैसा कि पिछले उत्तर में @CommonWare द्वारा सुझाया गया है
Liran Cohen

3
यह केवल छवि प्रकार फ़ाइल के लिए है, दूसरों के बारे में क्या?
प्रतिभा ने

2
सुनिश्चित करें कि आप Intent.ACTION_PICK से अपना uri प्राप्त कर रहे हैं और Intent.ACTION_GET_CONTENT नहीं कर रहे हैं, क्योंकि बाद में कोई
MediaStore.Images.Media.DATA है

34

उपयोग

InputStream inputStream = getContentResolver().openInputStream(uri);    

सीधे फ़ाइल को कॉपी करें। और देखें:

https://developer.android.com/guide/topics/providers/document-provider.html


1
इसे बहुत अधिक बढ़ा दिया जाना चाहिए। ContentResolver ऐसा लगता है कि आप Android.Net.Uri से पथ को हल करने के लिए डिफ़ॉल्ट रूप से देखेंगे।
माइक

मैं एक और upVote जोड़ना चाहता हूं, लेकिन यह पता चला कि मैं केवल एक बार कर सकता हूं!
एक्सनोलियन

27

संपादित करें: क्षमा करें, मुझे पहले बेहतर परीक्षण करना चाहिए था। यह काम करना चाहिए:

new File(new URI(androidURI.toString()));

URI java.net.URI है।


2
आह, लेकिन सवाल उरी है, यूआरआई नहीं। लोगों को उस के लिए बाहर देखना होगा :)
मुज़

1
@Muz, मेरा मानना ​​है कि उत्तर सही है। androidURIएक android.net.Uri है। java.net.URI (जो एंड्रॉइड पर मौजूद है) केवल रूपांतरण प्रक्रिया के भाग के रूप में उपयोग किया जाता है।
मैथ्यू फ्लैशेन

2
क्या हम अभी नहीं कर सकते: नई फ़ाइल (uri.getPath ());
बार्ट बर्ग

14
यह सिर्फ फेंकता है: IllegalArgumentException: URI में अपेक्षित फ़ाइल योजना: सामग्री: // मीडिया / बाहरी / चित्र / मीडिया / 80038
Jacek Kwiecień

7
मुझे java.lang.IllegalArgumentException: Expected file scheme in URI: content://com.shajeel.daily_monitoring.localstorage.documents.localstorage.documents/document/%2Fstorage%2Femulated%2F0%2FBook1.xlsxइस विधि का उपयोग करने के बाद अपवाद मिल रहा है ।
शजील अफजल

15

सबसे अच्छा उपाय

एक सरल FileUtil क्लास बनाएँ और फ़ाइल बनाने, कॉपी करने और उसका नाम बदलने के लिए उपयोग करें

मैं उपयोग कर रहा हूँ uri.toString()और uri.getPath()नहीं लेकिन मेरे लिए काम करते हैं। मुझे आखिरकार यह समाधान मिल गया।

import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.provider.OpenableColumns;
import android.util.Log;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class FileUtil {
    private static final int EOF = -1;
    private static final int DEFAULT_BUFFER_SIZE = 1024 * 4;

    private FileUtil() {

    }

    public static File from(Context context, Uri uri) throws IOException {
        InputStream inputStream = context.getContentResolver().openInputStream(uri);
        String fileName = getFileName(context, uri);
        String[] splitName = splitFileName(fileName);
        File tempFile = File.createTempFile(splitName[0], splitName[1]);
        tempFile = rename(tempFile, fileName);
        tempFile.deleteOnExit();
        FileOutputStream out = null;
        try {
            out = new FileOutputStream(tempFile);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        if (inputStream != null) {
            copy(inputStream, out);
            inputStream.close();
        }

        if (out != null) {
            out.close();
        }
        return tempFile;
    }

    private static String[] splitFileName(String fileName) {
        String name = fileName;
        String extension = "";
        int i = fileName.lastIndexOf(".");
        if (i != -1) {
            name = fileName.substring(0, i);
            extension = fileName.substring(i);
        }

        return new String[]{name, extension};
    }

    private static String getFileName(Context context, Uri uri) {
        String result = null;
        if (uri.getScheme().equals("content")) {
            Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
            try {
                if (cursor != null && cursor.moveToFirst()) {
                    result = cursor.getString(cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME));
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                if (cursor != null) {
                    cursor.close();
                }
            }
        }
        if (result == null) {
            result = uri.getPath();
            int cut = result.lastIndexOf(File.separator);
            if (cut != -1) {
                result = result.substring(cut + 1);
            }
        }
        return result;
    }

    private static File rename(File file, String newName) {
        File newFile = new File(file.getParent(), newName);
        if (!newFile.equals(file)) {
            if (newFile.exists() && newFile.delete()) {
                Log.d("FileUtil", "Delete old " + newName + " file");
            }
            if (file.renameTo(newFile)) {
                Log.d("FileUtil", "Rename file to " + newName);
            }
        }
        return newFile;
    }

    private static long copy(InputStream input, OutputStream output) throws IOException {
        long count = 0;
        int n;
        byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
        while (EOF != (n = input.read(buffer))) {
            output.write(buffer, 0, n);
            count += n;
        }
        return count;
    }
}

अपने कोड में FileUtil क्लास का उपयोग करें

try {
         File file = FileUtil.from(MainActivity.this,fileUri);
         Log.d("file", "File...:::: uti - "+file .getPath()+" file -" + file + " : " + file .exists());

  } catch (IOException e) {
          e.printStackTrace();
  }

यह काम किया है, लेकिन जब मैं गैलरी से छवि का चयन करता हूं तो यह लाइन में त्रुटि फेंकता है: InputStream inputStream = reference.getContentResolver ()। OpenInputStream (uri);
वाहिद अकबरी

यह बहुत अच्छी तरह से काम किया है, लेकिन यह कुछ Android उपकरणों पर FileNotFoundException फेंकता है।
vishwajit76

यह कैमरे के साथ काम नहीं करता है
suyash saurabh

कैमरे से पिक फोटो के लिए इस कोड का उपयोग करें stackoverflow.com/a/51095098/7008132
vishwajit76

13

इसमें से कोई भी मेरे लिए काम नहीं करता है। मैंने इसे कार्यशील समाधान पाया। लेकिन मेरा मामला छवियों के लिए विशिष्ट है

String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getActivity().getContentResolver().query(uri, filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String filePath = cursor.getString(columnIndex);
cursor.close();

यह एक उत्तर होना चाहिए! :) मैंने इसे एपीआई 25 पर परीक्षण किया।
iroiroys

4
ध्यान दें कि इस तकनीक को Android Q पर प्रतिबंधित किया गया है। आप अब DATA कॉलम तक नहीं पहुंच सकते (और यह पहली जगह में एक अविश्वसनीय दृष्टिकोण था)।
कॉमन्सवेयर

13

Android + कोटलिन

  1. Kotlin Android एक्सटेंशन के लिए निर्भरता जोड़ें:

    implementation 'androidx.core:core-ktx:{latestVersion}'

  2. Uri से फ़ाइल प्राप्त करें:

    uri.toFile()

Android + जावा

बस ऊपर जाएँ;)


3
यह तभी काम करता है जब उड़ी योजना को सेट किया जाता हैfile
MatPag


2

@CommonsWare ने सभी चीजों को अच्छी तरह से समझाया। और हमें वास्तव में उनके द्वारा प्रस्तावित समाधान का उपयोग करना चाहिए।

वैसे, केवल जानकारी हम इस बात पर भरोसा कर सकते हैं कि क्वेरी ContentResolverकिसी फ़ाइल का नाम और आकार यहां बताए अनुसार है: फ़ाइल जानकारी को पुनः प्राप्त करना | Android डेवलपर्स

जैसा कि आप देख सकते हैं कि एक इंटरफ़ेस है OpenableColumns कि है जिसमें केवल दो फ़ील्ड हैं: DISPLAY_NAME और SIZE।

मेरे मामले में मुझे JPEG छवि के बारे में EXIF ​​जानकारी प्राप्त करने और सर्वर में भेजने से पहले ज़रूरत पड़ने पर इसे घुमाने की आवश्यकता थी। ऐसा करने के लिए मैंने एक अस्थायी फ़ाइल में फ़ाइल सामग्री का उपयोग करके प्रतिलिपि बनाई ContentResolverऔरopenInputStream()


1

मैंने इसे इस तरह बनाया है:

try {
    readImageInformation(new File(contentUri.getPath()));

} catch (IOException e) {
    readImageInformation(new File(getRealPathFromURI(context,
                contentUri)));
}

public static String getRealPathFromURI(Context context, Uri contentUri) {
        String[] proj = { MediaStore.Images.Media.DATA };
        Cursor cursor = context.getContentResolver().query(contentUri, proj,
                null, null, null);
        int column_index = cursor
                .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(column_index);
}

इसलिए मूल रूप से पहले मैं एक फाइल का उपयोग करने की कोशिश करता हूं, जो कैमरा द्वारा ली गई तस्वीर और एसडी कार्ड में सेव की गई है। यह छवि द्वारा लौटाए जाने के लिए काम नहीं करता है: आशय photoPickerIntent = new Intent (Intent.ACTION_PICK); उस स्थिति में उरी को getRealPathFromURI()कार्य द्वारा वास्तविक पथ में परिवर्तित करने की आवश्यकता है । इसलिए निष्कर्ष यह है कि यह इस बात पर निर्भर करता है कि आप किस प्रकार की उरी फाइल में बदलना चाहते हैं।


1

यदि आपके पास एक Uriहै DocumentContractतो आप शायद उपयोग नहीं करना चाहते हैं File। यदि आप कोटलिन पर हैं, DocumentFileतो पुरानी दुनिया के उपयोग के Fileलिए सामान बनाने के लिए उपयोग करें , और ContentResolverधाराओं को प्राप्त करने के लिए उपयोग करें।

बाकी सब कुछ बहुत ज्यादा टूटने की गारंटी है।


0

इस मामले के लिए, विशेष रूप से एंड्रॉइड पर, बाइट्स के लिए रास्ता आमतौर पर तेज होता है।

इसके साथ, मैंने एक वर्ग की स्थापना करके इसे हल किया जिसे FileHelperपढ़ने / लिखने के लिए / से बाइट पढ़ने के लिए / स्ट्रीम के माध्यम से फाइल करने के UriHelperलिए जिम्मेदारी दी जाती है और एक वर्ग जिसे उरी और अनुमति के रास्ते का पता लगाने की जिम्मेदारी दी जाती है।

जहां तक ​​यह आम तौर पर पता है, तो string.getBytes((charset == null) ? DEFAULT_CHARSET:charset)आप हमें अपनी ज़रूरत के बाइट्स के लिए स्ट्रिंग को स्थानांतरित करने में मदद कर सकते हैं।

UriHelper और FileHelper को एक फाइल में Uri द्वारा नोट की गई तस्वीर को कॉपी करने के लिए कैसे दें, आप चला सकते हैं:

FileHelper.getInstance().copy(UriHelper.getInstance().toFile(uri_of_a_picture)
                        , FileHelper.getInstance().createExternalFile(null, UriHelper.getInstance().generateFileNameBasedOnTimeStamp()
                                + UriHelper.getInstance().getFileName(uri_of_a_picture, context), context)
                );

मेरे UriHelper के बारे में:

public class UriHelper {
private static UriHelper INSTANCE = new UriHelper();

public static UriHelper getInstance() {
    return INSTANCE;
}

@SuppressLint("SimpleDateFormat")
public String generateFileNameBasedOnTimeStamp() {
    return new SimpleDateFormat("yyyyMMdd_hhmmss").format(new Date()) + ".jpeg";
}

/**
 * if uri.getScheme.equals("content"), open it with a content resolver.
 * if the uri.Scheme.equals("file"), open it using normal file methods.
 */
//

public File toFile(Uri uri) {
    if (uri == null) return null;
    Logger.d(">>> uri path:" + uri.getPath());
    Logger.d(">>> uri string:" + uri.toString());
    return new File(uri.getPath());
}

public DocumentFile toDocumentFile(Uri uri) {
    if (uri == null) return null;
    Logger.d(">>> uri path:" + uri.getPath());
    Logger.d(">>> uri string:" + uri.toString());
    return DocumentFile.fromFile(new File(uri.getPath()));
}

public Uri toUri(File file) {
    if (file == null) return null;
    Logger.d(">>> file path:" + file.getAbsolutePath());
    return Uri.fromFile(file); //returns an immutable URI reference representing the file
}

public String getPath(Uri uri, Context context) {
    if (uri == null) return null;
    if (uri.getScheme() == null) return null;
    Logger.d(">>> uri path:" + uri.getPath());
    Logger.d(">>> uri string:" + uri.toString());
    String path;
    if (uri.getScheme().equals("content")) {
        //Cursor cursor = context.getContentResolver().query(uri, new String[] {MediaStore.Images.ImageColumns.DATA}, null, null, null);
        Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
        if (cursor == null) {
            Logger.e("!!! cursor is null");
            return null;
        }
        if (cursor.getCount() >= 0) {
            Logger.d("... the numbers of rows:" + cursor.getCount()
                        + "and the numbers of columns:" + cursor.getColumnCount());
            if (cursor.isBeforeFirst()) {
                while (cursor.moveToNext()) {
                    StringBuilder stringBuilder = new StringBuilder();
                    for (int i = 0; i<cursor.getColumnCount(); i++) {
                        stringBuilder.append("... iterating cursor.getString(" + i +"(" + cursor.getColumnName(i) + ")):" + cursor.getString(i));
                        stringBuilder.append("\n");
                    }
                    Logger.d(stringBuilder.toString());
                }
            } else {
                cursor.moveToFirst();
                do {
                    StringBuilder stringBuilder = new StringBuilder();
                    for (int i = 0; i<cursor.getColumnCount(); i++) {
                        stringBuilder.append("... iterating cursor.getString(" + i +"(" + cursor.getColumnName(i) + ")):" + cursor.getString(i));
                        stringBuilder.append("\n");
                    }
                    Logger.d(stringBuilder.toString());
                } while (cursor.moveToNext());
            }
            path = uri.getPath();
            cursor.close();
            Logger.d("... content scheme:" + uri.getScheme() + "  and return:" + path);
            return path;
        } else {
            path = uri.getPath();
            Logger.d("... content scheme:" + uri.getScheme()
                    + " but the numbers of rows in the cursor is < 0:" + cursor.getCount()
                    + "  and return:" + path);
            return path;
        }
    } else {
        path = uri.getPath();
        Logger.d("... not content scheme:" + uri.getScheme() + "  and return:" + path);
        return path;
    }
}

public String getFileName(Uri uri, Context context) {
    if (uri == null) return null;
    if (uri.getScheme() == null) return null;
    Logger.d(">>> uri path:" + uri.getPath());
    Logger.d(">>> uri string:" + uri.toString());
    String path;
    if (uri.getScheme().equals("content")) {
        //Cursor cursor = context.getContentResolver().query(uri, new String[] {MediaStore.Images.ImageColumns.DATA}, null, null, null);
        Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
        if (cursor == null) {
            Logger.e("!!! cursor is null");
            return null;
        }
        if (cursor.getCount() >= 0) {
            Logger.d("... the numbers of rows:" + cursor.getCount()
                    + "and the numbers of columns:" + cursor.getColumnCount());
            if (cursor.isBeforeFirst()) {
                while (cursor.moveToNext()) {
                    StringBuilder stringBuilder = new StringBuilder();
                    for (int i = 0; i<cursor.getColumnCount(); i++) {
                        stringBuilder.append("... iterating cursor.getString(" + i +"(" + cursor.getColumnName(i) + ")):" + cursor.getString(i));
                        stringBuilder.append("\n");
                    }
                    Logger.d(stringBuilder.toString());
                }
            } else {
                cursor.moveToFirst();
                do {
                    StringBuilder stringBuilder = new StringBuilder();
                    for (int i = 0; i<cursor.getColumnCount(); i++) {
                        stringBuilder.append("... iterating cursor.getString(" + i +"(" + cursor.getColumnName(i) + ")):" + cursor.getString(i));
                        stringBuilder.append("\n");
                    }
                    Logger.d(stringBuilder.toString());
                } while (cursor.moveToNext());
            }
            cursor.moveToFirst();
            path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.ImageColumns.DISPLAY_NAME));
            cursor.close();
            Logger.d("... content scheme:" + uri.getScheme() + "  and return:" + path);
            return path;
        } else {
            path = uri.getLastPathSegment();
            Logger.d("... content scheme:" + uri.getScheme()
                    + " but the numbers of rows in the cursor is < 0:" + cursor.getCount()
                    + "  and return:" + path);
            return path;
        }
    } else {
        path = uri.getLastPathSegment();
        Logger.d("... not content scheme:" + uri.getScheme() + "  and return:" + path);
        return path;
    }
}

}

मेरे FileHelper के बारे में:

public class FileHelper {
private static final String DEFAULT_DIR_NAME = "AmoFromTaiwan";
private static final int DEFAULT_BUFFER_SIZE = 1024;
private static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");
private static final int EOF = -1;
private static FileHelper INSTANCE = new FileHelper();

public static FileHelper getInstance() {
    return INSTANCE;
}

private boolean isExternalStorageWritable(Context context) {
    /*
    String state = Environment.getExternalStorageState();
    return Environment.MEDIA_MOUNTED.equals(state);
    */
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        if (context.checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
            return true;
        } else {
            Logger.e("!!! checkSelfPermission() not granted");
            return false;
        }
    } else { //permission is automatically granted on sdk<23 upon installation
        return true;
    }
}

private boolean isExternalStorageReadable(Context context) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        if (context.checkSelfPermission(android.Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {
            return true;
        } else {
            Logger.e("!!! checkSelfPermission() not granted");
            return false;
        }
    } else { //permission is automatically granted on sdk<23 upon installation
        return true;
    }
}

@SuppressLint("SimpleDateFormat")
private String generateFileNameBasedOnTimeStamp() {
    return new SimpleDateFormat("yyyyMMdd_hhmmss").format(new Date()) + ".jpeg";
}

public File createExternalFile(String dir_name, String file_name, Context context) {
    String dir_path;
    String file_path;
    File dir ;
    File file;
    if (!isExternalStorageWritable(context)) {
        Logger.e("!!! external storage not writable");
        return null;
    }
    if (dir_name == null) {
        dir_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + File.separator + DEFAULT_DIR_NAME;
    } else {
        dir_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + File.separator + dir_name;
    }
    Logger.d("... going to access an external dir:" + dir_path);
    dir = new File(dir_path);
    if (!dir.exists()) {
        Logger.d("... going to mkdirs:" + dir_path);
        if (!dir.mkdirs()) {
            Logger.e("!!! failed to mkdirs");
            return null;
        }
    }
    if (file_name == null) {
        file_path = dir_path + File.separator + generateFileNameBasedOnTimeStamp();
    } else {
        file_path = dir_path + File.separator + file_name;
    }
    Logger.d("... going to return an external dir:" + file_path);
    file = new File(file_path);
    if (file.exists()) {
        Logger.d("... before creating to delete an external dir:" + file.getAbsolutePath());
        if (!file.delete()) {
            Logger.e("!!! failed to delete file");
            return null;
        }
    }
    return file;
}

public File createInternalFile(String dir_name, String file_name, Context context) {
    String dir_path;
    String file_path;
    File dir ;
    File file;
    if (dir_name == null) {
        dir = new ContextWrapper(context).getDir(DEFAULT_DIR_NAME, Context.MODE_PRIVATE);
    } else {
        dir = new ContextWrapper(context).getDir(dir_name, Context.MODE_PRIVATE);
    }
    dir_path = dir.getAbsolutePath();
    Logger.d("... going to access an internal dir:" + dir_path);
    if (!dir.exists()) {
        Logger.d("... going to mkdirs:" + dir_path);
        if (!dir.mkdirs()) {
            Logger.e("!!! mkdirs failed");
            return null;
        }
    }
    if (file_name == null) {
        file = new File(dir, generateFileNameBasedOnTimeStamp());
    } else {
        file = new File(dir, file_name);
    }
    file_path = file.getAbsolutePath();
    Logger.d("... going to return an internal dir:" + file_path);
    if (file.exists()) {
        Logger.d("... before creating to delete an external dir:" + file.getAbsolutePath());
        if (!file.delete()) {
            Logger.e("!!! failed to delete file");
            return null;
        }
    }
    return file;
}

public File getExternalFile(String dir_name, String file_name, Context context) {
    String dir_path;
    String file_path;
    File file;
    if (!isExternalStorageWritable(context)) {
        Logger.e("!!! external storage not writable");
        return null;
    }
    if (dir_name == null) {
        dir_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + File.separator + DEFAULT_DIR_NAME;
    } else {
        dir_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + File.separator + dir_name;
    }
    if (file_name == null) {
        file_path = dir_path;
    } else {
        file_path = dir_path + File.separator + file_name;
    }
    Logger.d("... going to return an external file:" + file_path);
    file = new File(file_path);
    if (file.exists()) {
        Logger.d("... file exists:" + file.getAbsolutePath());
    } else {
        Logger.e("!!! file does't exist:" + file.getAbsolutePath());
    }
    return file;
}

public File getInternalFile(String dir_name, String file_name, Context context) {
    String file_path;
    File dir ;
    File file;
    if (dir_name == null) {
        dir = new ContextWrapper(context).getDir(DEFAULT_DIR_NAME, Context.MODE_PRIVATE);
    } else {
        dir = new ContextWrapper(context).getDir(dir_name, Context.MODE_PRIVATE);
    }
    if (file_name == null) {
        file = new File(dir.getAbsolutePath());
    } else {
        file = new File(dir, file_name);
    }
    file_path = file.getAbsolutePath();
    Logger.d("... going to return an internal dir:" + file_path);
    if (file.exists()) {
        Logger.d("... file exists:" + file.getAbsolutePath());
    } else {
        Logger.e("!!! file does't exist:" + file.getAbsolutePath());
    }
    return file;
}

private byte[] readBytesFromFile(File file) {
    Logger.d(">>> path:" + file.getAbsolutePath());
    FileInputStream fis;
    long file_length;
    byte[] buffer;
    int offset = 0;
    int next = 0;
    if (!file.exists()) {
        Logger.e("!!! file doesn't exists");
        return null;
    }
    if (file.length() > Integer.MAX_VALUE) {
        Logger.e("!!! file length is out of max of int");
        return null;
    } else {
        file_length = file.length();
    }
    try {
        fis = new FileInputStream(file);
        //buffer = new byte[(int) file_length];
        buffer = new byte[(int) file.length()];
        long time_start = System.currentTimeMillis();
        while (true) {
            Logger.d("... now next:" + next + " and offset:" + offset);
            if (System.currentTimeMillis() - time_start > 1000) {
                Logger.e("!!! left due to time out");
                break;
            }
            next = fis.read(buffer, offset, (buffer.length-offset));
            if (next < 0 || offset >= buffer.length) {
                Logger.d("... completed to read");
                break;
            }
            offset += next;
        }
        //if (offset < buffer.length) {
        if (offset < (int) file_length) {
            Logger.e("!!! not complete to read");
            return null;
        }
        fis.close();
        return buffer;
    } catch (IOException e) {
        e.printStackTrace();
        Logger.e("!!! IOException");
        return null;
    }
}

public byte[] readBytesFromFile(File file, boolean is_fis_fos_only) {
    if (file == null) return null;
    if (is_fis_fos_only) {
        return readBytesFromFile(file);
    }
    Logger.d(">>> path:" + file.getAbsolutePath());
    FileInputStream fis;
    BufferedInputStream bis;
    ByteArrayOutputStream bos;
    byte[] buf = new byte[(int) file.length()];
    int num_read;
    if (!file.exists()) {
        Logger.e("!!! file doesn't exists");
        return null;
    }
    try {
        fis = new FileInputStream(file);
        bis = new BufferedInputStream(fis);
        bos = new ByteArrayOutputStream();
        long time_start = System.currentTimeMillis();
        while (true) {
            if (System.currentTimeMillis() - time_start > 1000) {
                Logger.e("!!! left due to time out");
                break;
            }
            num_read = bis.read(buf, 0, buf.length); //1024 bytes per call
            if (num_read < 0) break;
            bos.write(buf, 0, num_read);
        }
        buf = bos.toByteArray();
        fis.close();
        bis.close();
        bos.close();
        return buf;
    } catch (FileNotFoundException e) {
        e.printStackTrace();
        Logger.e("!!! FileNotFoundException");
        return null;
    } catch (IOException e) {
        e.printStackTrace();
        Logger.e("!!! IOException");
        return null;
    }
}

/**
 * streams (InputStream and OutputStream) transfer binary data
 * if to write a string to a stream, must first convert it to bytes, or in other words encode it
 */
public boolean writeStringToFile(File file, String string, Charset charset) {
    if (file == null) return false;
    if (string == null) return false;
    return writeBytesToFile(file, string.getBytes((charset == null) ? DEFAULT_CHARSET:charset));
}

public boolean writeBytesToFile(File file, byte[] data) {
    if (file == null) return false;
    if (data == null) return false;
    FileOutputStream fos;
    BufferedOutputStream bos;
    try {
        fos = new FileOutputStream(file);
        bos = new BufferedOutputStream(fos);
        bos.write(data, 0, data.length);
        bos.flush();
        bos.close();
        fos.close();
    } catch (IOException e) {
        e.printStackTrace();
        Logger.e("!!! IOException");
        return false;
    }
    return true;
}

/**
 * io blocks until some input/output is available.
 */
public boolean copy(File source, File destination) {
    if (source == null || destination == null) return false;
    Logger.d(">>> source:" + source.getAbsolutePath() + ", destination:" + destination.getAbsolutePath());
    try {
        FileInputStream fis = new FileInputStream(source);
        FileOutputStream fos = new FileOutputStream(destination);
        byte[] buffer = new byte[(int) source.length()];
        int len;
        while (EOF != (len = fis.read(buffer))) {
            fos.write(buffer, 0, len);
        }
        if (true) { //debug
            byte[] copies = readBytesFromFile(destination);
            if (copies != null) {
                int copy_len = copies.length;
                Logger.d("... stream read and write done for " + copy_len + " bytes");
            }
        }
        return destination.length() != 0;
    } catch (IOException e) {
        e.printStackTrace();
        return false;
    }
}

public void list(final String path, final String end, final List<File> files) {
    Logger.d(">>> path:" + path + ", end:" + end);
    File file = new File(path);
    if (file.isDirectory()) {
        for (File child : file.listFiles()){
            list(child.getAbsolutePath(), end, files);
        }
    } else if (file.isFile()) {
        if (end.equals("")) {
            files.add(file);
        } else {
            if (file.getName().endsWith(end)) files.add(file);
        }
    }
}

public String[] splitFileName(File file, String split) {
    String path;
    String ext;
    int lastIndexOfSplit = file.getAbsolutePath().lastIndexOf(split);
    if (lastIndexOfSplit < 0) {
        path = file.getAbsolutePath();
        ext = "";
    } else {
        path = file.getAbsolutePath().substring(0, lastIndexOfSplit);
        ext = file.getAbsolutePath().substring(lastIndexOfSplit);
    }
    return new String[] {path, ext};
}

public File rename(File old_file, String new_name) {
    if (old_file == null || new_name == null) return null;
    Logger.d(">>> old file path:" + old_file.getAbsolutePath() + ", new file name:" + new_name);
    File new_file = new File(old_file, new_name);
    if (!old_file.equals(new_file)) {
        if (new_file.exists()) { //if find out previous file/dir at new path name exists
            if (new_file.delete()) {
                Logger.d("... succeeded to delete previous file at new abstract path name:" + new_file.getAbsolutePath());
            } else {
                Logger.e("!!! failed to delete previous file at new abstract path name");
                return null;
            }
        }
        if (old_file.renameTo(new_file)) {
            Logger.d("... succeeded to rename old file to new abstract path name:" + new_file.getAbsolutePath());
        } else {
            Logger.e("!!! failed to rename old file to new abstract path name");
        }
    } else {
        Logger.d("... new and old file have the equal abstract path name:" + new_file.getAbsolutePath());
    }
    return new_file;
}

public boolean remove(final String path, final String end) {
    Logger.d(">>> path:" + path + ", end:" + end);
    File file = new File(path);
    boolean result = false;
    if (file.isDirectory()) {
        for (File child : file.listFiles()){
            result = remove(child.getAbsolutePath(), end);
        }
    } else if (file.isFile()) {
        if (end.equals("")) {
            result = file.delete();
        } else {
            if (file.getName().endsWith(end)) result = file.delete();
        }
    } else {
        Logger.e("!!! child is not file or directory");
    }
    return result;
}

@TargetApi(Build.VERSION_CODES.O)
public byte[] readNIOBytesFromFile(String path) throws IOException {
    Logger.d(">>> path:" + path);
    if (!Files.exists(Paths.get(path), LinkOption.NOFOLLOW_LINKS)) {
        Logger.e("!!! file doesn't exists");
        return null;
    } else {
        return Files.readAllBytes(Paths.get(path));
    }
}

@TargetApi(Build.VERSION_CODES.O)
public File writeNIOBytesToFile(String dir, String name, byte[] data) {
    Logger.d(">>> dir:" + dir + ", name:" + name);
    Path path_dir;
    Path path_file;
    try {
        if (!Files.exists(Paths.get(dir), LinkOption.NOFOLLOW_LINKS)) {
            Logger.d("... make a dir");
            path_dir = Files.createDirectories(Paths.get(dir));
            if (path_dir == null) {
                Logger.e("!!! failed to make a dir");
                return null;
            }
        }
        path_file = Files.write(Paths.get(name), data);
        return path_file.toFile();
    } catch (IOException e) {
        e.printStackTrace();
        Logger.e("!!! IOException");
        return null;
    }
}

@TargetApi(Build.VERSION_CODES.O)
public void listNIO(final String dir, final String end, final List<File> files) throws IOException {
    Logger.d(">>> dir:" + dir + ", end:" + end);
    Files.walkFileTree(Paths.get(dir), new FileVisitor<Path>() {
        @Override
        public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
            Logger.d("... file:" + dir.getFileName());
            return FileVisitResult.CONTINUE;
        }

        @Override
        public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
            Logger.d("... file:" + file.getFileName());
            if (end.equals("")) {
                files.add(file.toFile());
            } else {
                if (file.endsWith(end)) files.add(file.toFile());
            }
            return FileVisitResult.CONTINUE;
        }

        @Override
        public FileVisitResult visitFileFailed(Path file, IOException exc) {
            Logger.d("... file:" + file.getFileName());
            if (end.equals("")) {
                files.add(file.toFile());
            } else {
                if (file.endsWith(end)) files.add(file.toFile());
            }
            return FileVisitResult.CONTINUE;
        }

        @Override
        public FileVisitResult postVisitDirectory(Path dir, IOException exc) {
            Logger.d("... file:" + dir.getFileName());
            return FileVisitResult.CONTINUE;
        }
    });
}

/**
 * recursion
 */
private int factorial (int x) {
    if (x > 1) return (x*(factorial(x-1)));
    else if (x == 1) return x;
    else return 0;
}

}


-1

उन लोगों के लिए जो यहाँ विशेष रूप से छवियों के लिए एक समाधान की तलाश में हैं।

private Bitmap getBitmapFromUri(Uri contentUri) {
        String path = null;
        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = getContentResolver().query(contentUri, projection, null, null, null);
        if (cursor.moveToFirst()) {
            int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
            path = cursor.getString(columnIndex);
        }
        cursor.close();
        Bitmap bitmap = BitmapFactory.decodeFile(path);
        return bitmap;
    }

-1

फ़ाइल की छवि फ़ाइल = नया फ़ाइल (नई URI (androidURI.toString ())); काम करता है अगर यह एक फाइल है जिसे बाहरी स्टोरेज में बनाया गया है।

उदाहरण के लिए फ़ाइल: /// स्टोरेज / एमुलेटेड / 0 / (कुछ डायरेक्टरी और फ़ाइल नाम)


-1

सार्वजनिक स्ट्रिंग getRealPathFromURI (उड़ी उड़ी) {

    String result;
    Cursor cursor = getContentResolver().query(uri, null, null, null, null);
    if (cursor == null) {
        result = uri.getPath();
        cursor.close();
        return result;
    }
    cursor.moveToFirst();
    int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
    result = cursor.getString(idx);
    cursor.close();
    return result;
}

फिर URI से फ़ाइल प्राप्त करने के लिए उपयोग करना:

        File finalFile = newFile(getRealPathFromURI(uri));

- आप मदद कर सकते हैं ----


1
ध्यान दें कि इस तकनीक को Android Q पर प्रतिबंधित किया गया है। आप अब DATA कॉलम तक नहीं पहुंच सकते (और यह पहली जगह में एक अविश्वसनीय दृष्टिकोण था)।
कॉमन्सवेयर

-1

निम्नलिखित कोड के द्वारा, मैं एक आवेदन के रूप में साझा की गई पीडीएफ फाइल को एक स्ट्रीम के रूप में और एंड्रॉइड एप्लिकेशन पथ में सहेजने में सक्षम हूं

Android.Net.Uri fileuri =
    (Android.Net.Uri)Intent.GetParcelableExtra(Intent.ExtraStream);

    fileuri i am getting as {content://com.adobe.reader.fileprovider/root_external/
                                        data/data/com.adobe.reader/files/Downloads/sample.pdf}

    string filePath = fileuri.Path;

   filePath I am gettings as root_external/data/data/com.adobe.reader/files/Download/sample.pdf

      using (var stream = ContentResolver.OpenInputStream(fileuri))
      {
       byte[] fileByteArray = ToByteArray(stream); //only once you can read bytes from stream second time onwards it has zero bytes

       string fileDestinationPath ="<path of your destination> "
       convertByteArrayToPDF(fileByteArray, fileDestinationPath);//here pdf copied to your destination path
       }
     public static byte[] ToByteArray(Stream stream)
        {
            var bytes = new List<byte>();

            int b;
            while ((b = stream.ReadByte()) != -1)
                bytes.Add((byte)b);

            return bytes.ToArray();
        }

      public static string convertByteArrayToPDF(byte[] pdfByteArray, string filePath)
        {

            try
            {
                Java.IO.File data = new Java.IO.File(filePath);
                Java.IO.OutputStream outPut = new Java.IO.FileOutputStream(data);
                outPut.Write(pdfByteArray);
                return data.AbsolutePath;

            }
            catch (System.Exception ex)
            {
                return string.Empty;
            }
        }

-2

धर्मांतरित के लिए @Jacek Kwiecień जवाब पर विस्तार आधार छवि uri लिए फ़ाइल

fun Uri.toImageFile(context: Context): File? {
    val filePathColumn = arrayOf(MediaStore.Images.Media.DATA)
    val cursor = context.contentResolver.query(this, filePathColumn, null, null, null)
    if (cursor != null) {
        if (cursor.moveToFirst()) {
            val columnIndex = cursor.getColumnIndex(filePathColumn[0])
            val filePath = cursor.getString(columnIndex)
            cursor.close()
            return File(filePath)
        }
        cursor.close()
    }
    return null
}

यदि हम उपयोग करते हैं File(uri.getPath()), तो यह काम नहीं करेगा

यहां छवि विवरण दर्ज करें

अगर हम android-ktx से एक्सटेंशन का उपयोग करते हैं , तो यह अभी भी काम नहीं करता है क्योंकि https://github.com/android/android-ktx/blob/master/src/main/java/androidx/core/net/Uri.kt


2
ध्यान दें कि इस तकनीक को Android Q पर प्रतिबंधित किया गया है। आप अब DATAकॉलम तक नहीं पहुंच सकते (और यह पहली जगह में एक अविश्वसनीय दृष्टिकोण था)।
कॉमन्सवेयर

-2

onActivityResultडॉक, या पीडीएफ फाइल में जोड़ें

var imageUriPath = ""
imageUriPath =
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    val split = (imageUri.path ? : "").split(":") //split the path.
    split[1]
  } else {
    imageUri.path ? : ""
  }
val file = File(imageUriPath)
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.