如何使用Koltin在Android中将文件移动到内部存储(保留应用程序的内存)?

时间:2019-02-22 13:55:16

标签: android kotlin stream android-internal-storage

尽管标题非常类似于Stack Overflow中的其他标题,但我遇到的任何一种可能性似乎都不适合我。

我正在使用DownloadManager下载文件(由于我是android和kotlin的新手,所以选择这种方式,在我看来,快捷方式是通过DM下载文件,然后将其复制到内部存储中+从中删除下载文件夹,而不是手动管理线程创建以将下载直接处理到内部存储中)。

然后我正在尝试将其移入内部存储。 这些文件可以是图像,但主要是mp3文件。现在,我正在开发mp3阅读器部分。 可以下载,但是我在将文件复制到内部存储时遇到了问题 这是我的代码:

if(myDownloadKind == "I"){ // string "I" stands for "internal"

    println("myTag - into BroadCast for inner")

    var myStoredFile:String = uri.toString()
    println("mytag - myStoredFile: $myStoredFile")
    // here I try to convert the mp3 file into a ByteArray to copy it
    var data:ByteArray = Files.readAllBytes(Paths.get(myStoredFile))
    println("myTag - data: $data")

    var myOutputStream: FileOutputStream
    // write file in internal storage
    try {
        myOutputStream = context.openFileOutput(myStoredFile, Context.MODE_PRIVATE)
        myOutputStream.write(data) // NOT WORKING!!
    }catch (e: Exception){
        e.printStackTrace() 
    }


} else if (myDownloadKind == "E"){
  // now this doesn't matter, Saving in external storage is ok
}

我真的找不到入门级的文档(对于新手!),所以我想做一件非常简单的事情,我想...

1 个答案:

答案 0 :(得分:0)

好的,最后我设法解决了我的麻烦。 我将链接保存到这里,这挽救了我的一天(终于找到了):save file to internal memory in android?

我只是更改了InputStream源(只是为了从External Storage保留副本),使其指向我自己的文件! 我也终于了解了“ InputStream系统”,当然,我以科特林式的方式重写了while循环

try {
    println("myTag - into BroadCast for inner")

    val downloadedFile = File(uri.toString())
    val fileInputStream = FileInputStream(downloadedFile)
    println("myTag - input stream of file: $fileInputStream")

    val inputStream = fileInputStream
    val inStream = BufferedInputStream(inputStream, 1024 * 5)

    val file = File(context.getDir("Music", Context.MODE_PRIVATE), "/$myFilename$myExtensionVar")
    println("myTag - my cavolo di file: $file")

    if (file.exists()) {
        file.delete()
    }
    file.createNewFile()

    val outStream = FileOutputStream(file)
    val buff = ByteArray(5 * 1024)

    var len = 0
    while(inStream.read(buff).also { len = it } >= 0){
        outStream.write(buff, 0, len)
    }

    outStream.flush()
    outStream.close()
    inStream.close()

} catch (e: Exception) {
    e.printStackTrace()
}

但是,我认为我将直接将文件直接下载到内部存储中。