Android Studio 错误: 编码GBK的不可映射字符
2023-3-28
解决方法 在项目下的build.gradle中添加以下代码即可解决 tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
解决方法 在项目下的build.gradle中添加以下代码即可解决 tasks.withType(JavaCompile) { options.encoding = "UTF-8" }
过时 'A'.toByte() 修改 'A'.code.toByte()
代码 //正则匹配表达,当遇到以下中括号里的内容会停止继续获取,由此得到当前已输入的词 private val exceptRegex = "[ \\n;,.)/(\'\"]".toRegex(...