gpt4 book ai didi

android - Kotlin URL().readText(),如何从返回值转换为字符串

转载 作者:行者123 更新时间:2023-11-29 23:59:53 26 4
gpt4 key购买 nike

我通过转换字符串堆叠起来,这是我的代码:

fun getCurrentTitle() {
doAsync {
val str = URL("http://10.0.0.8:4800/${Utils.TITL}").readText(Charset.forName("UTF-8"))
uiThread {
current_song_title.text = str
System.out.println(str)
}
}
}

这是我返回的字符串(在 TextView 中是相同的)

I/System.out: Ti�sto - On My Way

并且在 Web 浏览器中返回正确的字符串

Tiėsto - On My Way

我不知道我做错了什么......

提前致谢!

Edit If someone have same issue, here is solution. Thans to Vivick

val url = URL("http://10.0.0.8:4800/${Utils.TITL}").readText(Charset.forName("ISO-8859-1"))

最佳答案

如评论中所述,只需使用 ISO-8859-1 字符集即可查看您想要的字符。

(这只是为了让这篇文章被标记为已解决的重申)

关于android - Kotlin URL().readText(),如何从返回值转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50080455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com