如何安全地写入/读取内部文件

时间:2019-10-22 12:01:19

标签: android kotlin internal-storage android-internal-storage

我正在尝试创建一个帮助程序类,该类将使用Kotlin处理我的android应用程序中的内部文件读写。

以下是我依次浏览的链接:

  1. https://developer.android.com/guide/topics/data/data-storage
  2. https://developer.android.com/training/data-storage/files.html#WriteInternalStorage
  3. https://developer.android.com/training/data-storage/files/internal
  4. https://developer.android.com/topic/security/data

这是我的代码:

package com.example.testapp

// Added
import android.content.Context
import java.io.File

// External
import androidx.security.crypto.EncryptedFile
import androidx.security.crypto.MasterKeys

@Suppress("unused")
class SystemMain {
    fun writeFile(context: Context) {
        // Although you can define your own key generation parameter specification, it's recommended that you use the value specified here.
        val keyGenParameterSpec = MasterKeys.AES256_GCM_SPEC
        val masterKeyAlias = MasterKeys.getOrCreate(keyGenParameterSpec)

        // Creates a file with this name, or replaces an existing file that has the same name. Note that the file name cannot contain path separators.
        val fileToWrite = "my_sensitive_data.txt"
        val encryptedFile = EncryptedFile.Builder(File(fileToWrite), context, masterKeyAlias, EncryptedFile.FileEncryptionScheme.AES256_GCM_HKDF_4KB).build()

        encryptedFile.bufferedWriter().use { writer ->
            writer.write("MY SUPER-SECRET INFORMATION")
        }
    }
}

这是我的build.gradle:

...
implementation "androidx.lifecycle:lifecycle-extensions:2.1.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0"

implementation "androidx.security:security-crypto:1.0.0-alpha02"
...

我得到的错误在这里:encryptedFile.bufferedWriter()

  

未解决的参考。以下候选人均不适用   由于接收器类型不匹配:

     
      
  • @InlineOnly公共内联乐趣File.bufferedWriter(charset:Charset = ...,bufferSize:Int = ...):在kotlin.io中定义的缓冲Writer
  •   
  • @InlineOnly公共内联乐趣OutputStream.bufferedWriter(charset:Charset = ...):在kotlin.io中定义的BufferedWriter
  •   

我在某处缺少参考吗?我使用的引用不正确吗?代码是否已更改,链接上的文档已过时?

我对此很陌生。任何建议/帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

查看定义和声明后;我找到了:

encryptedFile.openFileOutput().bufferedWriter().use {writer ->
    writer.write("MY SUPER-SECRET INFORMATION")
}

不确定这将如何进行,但是没有错误。

希望这对其他人有帮助。