LoginSignup
18
11

More than 5 years have passed since last update.

KotlinでAndroidのassets内のテキストファイルを手軽に読み出す

Posted at

assetsにテキストファイル入れるじゃないですか。読もうとすると色々面倒くさいじゃないですか。
Kotlinだと手軽に済みます。

val message = getAssets().open("LICENSE.TXT").reader(charset=Charsets.UTF_8).use{it.readText()}

Kotlin可愛いよKotlin。

18
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
11