
java
小马本色
这个作者很懒,什么都没留下…
展开
-
Gson and Active Android: Attempted to serialize java.lang.Class. Forgot to register a type adapter?
I’m using Gson to serialize an Active Android model. The model class contains only primitives, and Gson should have no issues serializing it with the default settings. However, when I try, I get the error: java.lang.UnsupportedOperationException: Attempt..原创 2022-03-29 10:37:59 · 3522 阅读 · 0 评论 -
java 保留几位小数
package com.clzhang.sample; import java.math.BigDecimal; import java.math.RoundingMode; import java.text.DecimalFormat; import java.text.NumberFormat; public class DoubleTest { /** * 保留两位小数,四舍五入的一个老土的方法 * @param d * @return *原创 2020-12-05 17:09:48 · 256 阅读 · 0 评论