• Java 数字转百分比%


    java 将数字转成百分比 (%)float integer double 等等 


    java.text.NumberFormat percentFormat =java.text.NumberFormat.getPercentInstance(); percentFormat.setMaximumFractionDigits(2); //最大小数位数 
    percentFormat.setMaximumIntegerDigits(int);//最大整数位数 
    percentFormat.setMinimumFractionDigits(2); //最小小数位数 
    percentFormat.setMinimumIntegerDigits(int);//最小整数位数 
    percentFormat.format(float)//自动转换成百分比显示.. 

    也可以用: 
    1) java.text.DecimalFormat percentFormat =new java.text.DecimalFormat(); 
       percentFormat.format(long/double/float); 
       但这个我不知道怎样控制小数位数. 
    2) 也可用bean-write标签,<bean:write name="post" property="rate" format="####0.00%"/>

    在追随技术的道路上,十年如一日~
  • 相关阅读:
    unigui1404在delphi10.2.2安装
    入库单的一些业务逻辑
    mormot日志
    论MORMOT序列的JSON格式
    线程安全的队列
    SynDBOracle.pas
    轻量级的REST中间件
    TQuery
    100亿数据1万属性数据架构设计
    愤怒的TryCatch
  • 原文地址:https://www.cnblogs.com/iamcui/p/4704031.html
Copyright © 2020-2023  润新知