摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.apache.http.HttpResponse; import org.apache.http.client.methods.H 阅读全文
posted @ 2022-10-21 16:34 珊瑚贝博客 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 一、使用 java.math.BigDecimal 类 public static String format1(double value) { BigDecimal bd = new BigDecimal(value); bd = bd.setScale(2, RoundingMode.HALF_ 阅读全文
posted @ 2022-10-21 15:04 珊瑚贝博客 阅读(10183) 评论(0) 推荐(0) 编辑
摘要: with open(file,"r") as f: data = json.load(f) 如果报错 UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 将with open(file) as f: 改成 with open(file, 'r', en 阅读全文
posted @ 2022-10-21 14:29 珊瑚贝博客 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 首先 IDEA -plugins搜索插件GenerateAllSetter 安装后重启 使用方法 首先写一个 Object A = new Object();然后 指针放到左边Object上,option + 回车 来源:http://www.shanhubei.com/archives/2424. 阅读全文
posted @ 2022-10-21 12:01 珊瑚贝博客 阅读(394) 评论(0) 推荐(0) 编辑
摘要: php中文转gbk的方法:首先找到并打开相应的PHP文件;然后通过“$fileName=iconv("UTF-8", "gbk", $fileName);”将其转换为gbk的中文编码格式即可。 来源:http://www.shanhubei.com/archives/2422.html 阅读全文
posted @ 2022-10-21 11:59 珊瑚贝博客 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 这篇文章主要介绍了PHP保留两位小数的几种方法,需要的朋友可以参考下 代码如下所示: $num = 10.4567; //第一种:利用round()对浮点数进行四舍五入 echo round($num,2); //10.46 //第二种:利用sprintf格式化字符串 $format_num = s 阅读全文
posted @ 2022-10-21 11:56 珊瑚贝博客 阅读(1808) 评论(0) 推荐(0) 编辑
摘要: yii2 中 linslin\Curl的基本使用 一、get请求: 1.1 简单get请求 use linslin\yii2\curl; $curl = new curl\Curl(); //get http://example.com/ get请求改网址 $response = $curl->ge 阅读全文
posted @ 2022-10-21 11:47 珊瑚贝博客 阅读(168) 评论(0) 推荐(0) 编辑