Kotlin 打印错误信息 将错误信息上传到服务器
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin 打印错误信息 将错误信息上传到服务器相关的知识,希望对你有一定的参考价值。
import java.io.PrintWriter
import java.io.StringWriter
object ExceptionUtils
fun getStackTrace(throwable: Throwable): String
val sw = StringWriter()
val pw = PrintWriter(sw)
return try
throwable.printStackTrace(pw)
sw.toString()
finally
pw.close()
以上是关于Kotlin 打印错误信息 将错误信息上传到服务器的主要内容,如果未能解决你的问题,请参考以下文章
错误记录Kotlin 编译报错 ( Type mismatch: inferred type is String? but String was expected )
错误记录Kotlin 编译报错 ( Class ‘Xxx‘ is not abstract and does not implement abstract member )
错误记录Kotlin 编译报错 ( Smart cast to ‘Xxx‘ is impossible, because ‘xxx‘ is a mutable property ... )