简体   繁体   中英

Deserialization kotlin data class android

I have simple class

data class UserInfo(val id:String, val name:String, val email:String) : Serializable
{
}

I serialize it to string

(userInfo as Serializable).toString()

How can I deserialize it back?

You need to read documentation for Serializable https://developer.android.com/reference/java/io/Serializable.html and Object.toString() https://developer.android.com/reference/java/lang/Object.html#toString()

You did not serialize an object.

You can use ByteArrayOutputStream to serialize object into it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM