2020年1月1日

JSONObject遍历并替换部分json值

摘要: 给大家推荐一个很好的自学网站,https://how2j.cn?p=77721,how2j,从基础到项目,一应俱全。可以先注册再学习,这样就可以记录学习进度咯!!! 今天做接口对接,在更新价格时,最开始传的值为整数,发现报错,询问对方后得知需要统一保留两位小数,没有则为.00,于是对原有JSONOb 阅读全文

posted @ 2020-01-01 22:40 Coder-Wf 阅读(6154) 评论(0) 推荐(0)

SqlServer为字段创建索引

摘要: 语法: CREATE [索引类型] INDEX 索引名称 ON 表名(列名) 创建索引实例: 聚集索引 create clustered index index_name on table_name (cloumn_name); 非聚集索引 create nonclustered index ind 阅读全文

posted @ 2020-01-01 21:22 Coder-Wf 阅读(6009) 评论(0) 推荐(1)

学习java时在要求输出的数字带俩个小数点时,利用String.format时出现的问题

摘要: public class StringFormatDemo { public static void main(String[] args) { //String.format 实现了四舍五入 System.out.println(String.format("%.2f",8.1256));//8. 阅读全文

posted @ 2020-01-01 09:35 Coder-Wf 阅读(726) 评论(0) 推荐(0)

导航