``` try { val bytes = data.toByteArray() ctx.o...
# android
j
Copy code
try {
  val bytes = data.toByteArray()
  ctx.openFileOutput(...).use {
    it.write(bytes)
  }
} catch (e: IOException) { ... }
1
👍 3