因此,我有一个CSV文件,其中包含应用程序所需的一些数据。我不确定应在应用程序包中的哪个位置存储文件以及如何访问文件(作为文件)。
我将其存储在res/raw
中,但是找不到访问该文件的方法。
这是我的代码:
val uri = Uri.parse("android.resource://com.example.sample/raw/data")
Log.e("TAG", uri.path.toString())
var file = File(uri.path.toString())
Log.e("TAG", file.path)
Log.e("TAG", file.exists().toString())
file.exists()
返回false。