摘要: package com.xingyi.bos.utils; import com.xingyi.bos.ZjBosApplication; import org.jasypt.encryption.StringEncryptor; import org.junit.Test; import org. 阅读全文
posted @ 2021-09-08 11:21 super超人 阅读(332) 评论(0) 推荐(0)
摘要: 转JsonObject: Object region = JSONObject.parse(regions.toString()); 转对象: BStationRegion stationRegion = JSONObject.parseObject(regions.toString(),BStat 阅读全文
posted @ 2021-09-08 10:09 super超人 阅读(1709) 评论(0) 推荐(0)
摘要: 必须是相同类型比较才行,否则返回false。 源码: public boolean equals(Object obj) { if (obj instanceof Integer) { return value == ((Integer)obj).intValue(); } return false 阅读全文
posted @ 2021-09-08 10:04 super超人 阅读(193) 评论(0) 推荐(0)