android 异常:java.io. unacceptedEncodingException:java.nio.charset.CharsetICU[UTF-8]

mefy6pfw  于 2024-01-04  发布在  Android
关注(0)|答案(2)|浏览(151)

Android Studio 3.6
在build.gradle中:

  1. compileOptions {
  2. targetCompatibility JavaVersion.VERSION_1_8
  3. sourceCompatibility JavaVersion.VERSION_1_8
  4. }
  5. api 'org.apache.commons:commons-io:1.3.2'

字符串
在我的代码中

  1. import org.apache.commons.io.FileUtils
  2. import java.io.*
  3. import java.nio.charset.StandardCharsets
  4. val file = File(folderPath + File.separator + resultFileName)
  5. FileUtils.writeStringToFile(
  6. file,
  7. fileContents,
  8. StandardCharsets.UTF_8.toString()
  9. )


但我得到错误:

  1. java.nio.charset.CharsetICU[UTF-8]
  2. java.io.UnsupportedEncodingException: java.nio.charset.CharsetICU[UTF-8]
  3. at java.nio.charset.Charset.forNameUEE(Charset.java:322)
  4. at java.lang.String.getBytes(String.java:534)
  5. at org.apache.commons.io.IOUtils.write(IOUtils.java:810)
  6. at org.apache.commons.io.FileUtils.writeStringToFile(FileUtils.java:1110)
  7. at com.myproject.client.common.util.AndroidFileUtil.saveTextToFile(AndroidFileUtil.kt:106)
  8. at com.myproject.client.service.RecognizedCheckDataService$Companion.saveRecognizedText(RecognizedCheckDataService.kt:117)
  9. at com.myproject.client.viewmodel.ScanCheckRompetrolViewModel.finishProcessRecognizedCheck(ScanCheckRompetrolViewModel.kt:1059)
  10. at com.myproject.client.viewmodel.ScanCheckRompetrolViewModel.access$finishProcessRecognizedCheck(ScanCheckRompetrolViewModel.kt:28)
  11. at com.myproject.client.viewmodel.ScanCheckRompetrolViewModel$runDetector$1.onSuccess(ScanCheckRompetrolViewModel.kt:193)
  12. at com.myproject.client.viewmodel.ScanCheckRompetrolViewModel$runDetector$1.onSuccess(ScanCheckRompetrolViewModel.kt:28)
  13. at com.google.android.gms.tasks.zzn.run(Unknown Source)
  14. at android.os.Handler.handleCallback(Handler.java:739)
  15. at android.os.Handler.dispatchMessage(Handler.java:95)
  16. at android.os.Looper.loop(Looper.java:148)
  17. at android.app.ActivityThread.main(ActivityThread.java:5417)
  18. at java.lang.reflect.Method.invoke(Native Method)
  19. at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
  20. at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
  21. Caused by: java.nio.charset.IllegalCharsetNameException: java.nio.charset.CharsetICU[UTF-8]

b5buobof

b5buobof1#

Charset#toString()没有很好地指定;在Android上,它返回"java.nio.charset.CharsetICU[UTF-8]"作为找到here。当然,该字符串不是现有字符集的名称。
但是根本不需要toString()调用。writeStringToFile方法有一个直接接受Charset的重载。

lndjwyie

lndjwyie2#

在我的例子中,用"UTF-8"替换StandardCharsets.UTF_8.toString()解决了这个问题。
请注意,toString()返回name()的结果,因此用name()替换它,正如对该问题的评论所建议的那样,不会改变任何东西。

相关问题