java中一些常用的小方法集合

java中一些常用的小方法集合

1、格式化小数(保留几位小数)
// 保留两位小数
DecimalFormat decimalFormat = new DecimalFormat("#0.00");
String str = decimalFormat.format(number);
//显示白分比
DecimalFormat decimalFormat1 = new DecimalFormat("#0.00%");
String str = decimalFormat1.format(number);

2、html的标题带图片语法
< link rel=“shortcut icon” type=“image/x-icon” href=“图片路径”>

猜你喜欢

转载自blog.csdn.net/weixin_52065369/article/details/114156336