如何使用Android存储访问框架正确覆盖文件内容

时间:2019-07-05 12:13:02

标签: android overwrite fileoutputstream storage-access-framework

>>背景

我想使用SAF(存储访问框架)将我的应用程序的数据文件保存到用户在存储介质上所需的位置。我首先在应用程序专用文件夹中创建文件,然后将其复制到用户从文件选择器对话框中选择的文件(以后会出现代码)。

此过程非常适合新文件,但对于现有文件,尽管文件选择器警告覆盖文件,但最终文件在写入之前不会被擦除。

通过计算写入的字节数并使用十六进制编辑器调查文件,代码将正确的字节写入输出流,但是:如果现有文件的字节数大于要写入的字节数,则最终的覆盖文件将被破坏(并未真正损坏,请参阅下一节进行澄清),如果现有字节少于要写入的字节,则最终被覆盖的文件是正确的。

>>详细信息和代码

我使用下面的代码来显示问题(jpg作为示例): 我将尝试使用两个文件:

file1.jpg 166,907 bytes
file2.jpg 1,323,647 bytes
file3.jpg The final file with variable size

首先,我将文件1复制到用户选择的文件夹中,文件名为文件3(目标文件),然后用文件2覆盖它,最后我将再次用文件1覆盖它。看看代码是什么以及会发生什么:

用于调用文件选择器的代码:

val intent = Intent(Intent.ACTION_CREATE_DOCUMENT).apply {
    addCategory(Intent.CATEGORY_OPENABLE)
    type = "image/jpeg"
}
startActivityForResult(intent, request)

现在在onActivityResult()处,我将数据处理如下:

contentResolver.openOutputStream(fileUri)?.use {output->
        val input = FileInputStream(File(getExternalFilesDir(null),"Pictures/file1.jpg"))
    // file1.jpg for first run, file2.jpg for 2nd run and file1.jpg again for 3rd run     
        copyStream(input, output)

    }

以及复制流的代码:

@Throws(IOException::class)
fun copyStream(input: InputStream, output: OutputStream) {
    val buffer = ByteArray(1024)
    var bytesRead = input.read(buffer)
    while (bytesRead > 0) {
        output.write(buffer, 0, bytesRead)
        bytesRead = input.read(buffer)
    }
    input.close()
    //The output will be closes by kotlin standard function "use" at previous code
}

现在,第一次运行时,file3.jpg与file1.jpg完全相同。在第二次运行中,file3.jpg与file2.jpg相同。但是在第三次运行时,它用file1.jpg的内容覆盖file3.jpg(具有比file3.jpg的kess字节),file3.jpg的大小仍然为1,323,647字节,前166,907字节与file1.jpg相同,其余字节直到1,323,647与第二次运行时写入的file2.jpg相同。

这是十六进制文件的内容:

file1.jpg

0000:0000 | FF D8 FF E1  09 49 45 78  69 66 00 00  49 49 2A 00 | ÿØÿá.IExif..II*.
0000:0010 | 08 00 00 00  09 00 0F 01  02 00 06 00  00 00 7A 00 | ..............z.
...
0002:8BE0 | 56 5E 2A EC  C7 36 6D B1  57 1C D5 CD  95 8A BB 2F | V^*ìÇ6m±W.ÕÍ..»/
0002:8BF0*| 36 6C 55 AD  F2 F3 65 60  43 FF D9*                | 6lU.òóe`CÿÙ     

file2.jpg

0000:0000 | FF D8 FF E0  00 10 4A 46  49 46 00 01  01 00 00 01 | ÿØÿà..JFIF......
0000:0010 | 00 01 00 00  FF E1 01 48  45 78 69 66  00 00 49 49 | ....ÿá.HExif..II
...
0002:8BC0 | F2 07 23 D4  57 CA 7E 13  FD A9 23 B5  86 2D 3E 4D | ò.#ÔWÊ~.ý©#µ.->M
0002:8BD0 | 66 7B 58 D1  42 A3 4D 6A  57 80 38 C9  CF EB 5E 93 | f{XÑB£MjW.8ÉÏë^.
0002:8BE0 | E1 3F DA 36  CA EA 10 2E  7C 49 0B C4  E3 21 F6 8C | á?Ú6Êê..|I.Äã!ö.
0002:8BF0*| 9F D6 BB 63  8B A3 86 D5  34 B5 D9*E8  D2 E9 D7 AE | .Ö»c.£.Õ4µÙèÒé×®
0002:8C00 | B7 34 9F B5  85 18 C6 B5  DF 2E FA 6B  AD B6 5D BC | ·4.µ..Ƶß.úk.¶]¼
0002:8C10 | F7 3D 6E F3  C3 50 6B 56  32 D9 CC 14  AB AE 30 C3 | ÷=nóÃPkV2ÙÌ.«®0Ã
...
0014:3260 | E8 8B 0A CE  4E 47 AD 4A  92 B2 E4 E6  8B 3B 7F 34 | è..ÎNG.J.²äæ.;.4
0014:3270 | 1C 55 D8 6C  14 83 BA 88  AB 98 46 4D  33 FF D9    | .UØl..º.«.FM3ÿÙ 

file3.jpg (After the 3rd run)

0000:0000 | FF D8 FF E1  09 49 45 78  69 66 00 00  49 49 2A 00 | ÿØÿá.IExif..II*.
0000:0010 | 08 00 00 00  09 00 0F 01  02 00 06 00  00 00 7A 00 | ..............z.
...
0002:8BD0 | D9 B1 43 BA  E6 39 B7 CD  8A B5 97 9B  36 29 76 5E | Ù±Cºæ9·Í.µ..6)v^
0002:8BE0 | 56 5E 2A EC  C7 36 6D B1  57 1C D5 CD  95 8A BB 2F | V^*ìÇ6m±W.ÕÍ..»/
//content of file1 continues with content of file2 (Next line)
0002:8BF0*| 36 6C 55 AD  F2 F3 65 60  43 FF D9*E8  D2 E9 D7 AE | 6lU.òóe`CÿÙèÒé×®
0002:8C00 | B7 34 9F B5  85 18 C6 B5  DF 2E FA 6B  AD B6 5D BC | ·4.µ..Ƶß.úk.¶]¼
0002:8C10 | F7 3D 6E F3  C3 50 6B 56  32 D9 CC 14  AB AE 30 C3 | ÷=nóÃPkV2ÙÌ.«®0Ã
0002:8C20 | 8C F3 83 5E  55 3D 86 A1  F0 EB C5 72  E9 C6 62 E2 | .ó.^U=.¡ðëÅréÆbâ
...
0014:3260 | E8 8B 0A CE  4E 47 AD 4A  92 B2 E4 E6  8B 3B 7F 34 | è..ÎNG.J.²äæ.;.4
0014:3270 | 1C 55 D8 6C  14 83 BA 88  AB 98 46 4D  33 FF D9    | .UØl..º.«.FM3ÿÙ 

您可以看到file3以file1的内容开头,并且在第三行0002:8BF0在第三组的file1的最后字节(FF D9)之后,它继续以file2的内容(E8 D2)(星点< / strong>)

我测试了直接在应用程序的专用文件夹中复制相同文件的过程,但是对于所有三个运行,使用正确的file3的结果都是正确的。问题仅在于SAF。

2 个答案:

答案 0 :(得分:2)

花了几天时间试图理解为什么我在覆盖文件时会在文件末尾获取损坏的数据,幸亏我找到了这篇文章。我的测试显示出与OP相同的结果。当写入比现有文件内容短的新内容时,残留数据会留在文件末尾,从而导致文件“损坏”。我的错误假设是,写入文件会完全删除/覆盖现有内容。

在“编辑文档” ...(https://developer.android.com/training/data-storage/shared/documents-files#edit)上使用Android Developers示例突出显示了该问题,因为使用他们的代码示例只会覆盖第一条记录。 IE 100行文本文件(例如),如果使用其代码示例,则仍然是100行文本文件,仅更改第一条记录。如果只想“原地”修改特定记录,则很有用,但如果您想完全替换文件内容,则不会有用!

这是示例代码的修改后的Java版本,可确保输出在被覆盖之前先被“清空”(采用上述OP描述的方法)

    private void overwriteDocument(Uri uri) {
        try {
            ParcelFileDescriptor pfd = getActivity().getContentResolver().
                    openFileDescriptor(uri, "w");
            FileOutputStream fileOutputStream =
                    new FileOutputStream(pfd.getFileDescriptor());


            // Use this code to ensure that the file is 'emptied' 
            FileChannel fChan=fileOutputStream.getChannel();
            fChan.truncate(0);


            fileOutputStream.write(("Overwritten at " + System.currentTimeMillis() +
                    "\n").getBytes());
            // Let the document provider know you're done by closing the stream.
            fileOutputStream.close();
            pfd.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

答案 1 :(得分:0)

经过三天的搜索和在这里询问一天后,我找到了答案。我没有删除问题,因为其他人可能会遇到相同的问题。 问题的性质使我误入歧途。它不仅是由于复制流而产生的,而且在编写例如4个字节(bbbb)覆盖8个字节(aaaaaaaa)的文件。它会创建一个文件,该文件的前4个是新字节,然后是4个旧字节! (bbbbaaaa)。

因此答案在FileOutputStream()中。 具有写入文件(input.channel.size())或(output.cannel.position())的字节大小,并截断其余字节(output.channel.truncate(size))。

作为有问题的代码,我更改为:

contentResolver.openOutputStream(fileUri)?.use {output->
    output as FileOutputStream
    FileInputStream(File(getExternalFilesDir(null),"Pictures/file1.jpg")).use{input->
        copyStream(input, output)
        // this new line removes bytes beyond the input file size
        output.channel.truncate(input.channel.size())
        // or
        // output.channel.truncate(output.channel.position())
    }
}

就这样