数字转化成字符串左边自动补零方法整理

数字转化成字符串左边自动补零方法整理

ID:19155550

大小:31.12 KB

页数:6页

时间:2018-09-29

数字转化成字符串左边自动补零方法整理_第1页
数字转化成字符串左边自动补零方法整理_第2页
数字转化成字符串左边自动补零方法整理_第3页
数字转化成字符串左边自动补零方法整理_第4页
数字转化成字符串左边自动补零方法整理_第5页
资源描述:

《数字转化成字符串左边自动补零方法整理》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、数字转化成字符串左边自动补零方法整理以下为Stringformat函数使用方法介绍1.Java中给数字左边补0(1)方法一[java]viewplaincopyprint?1.import java.text.NumberFormat;  2.public class NumberFormatTest {  3.    public static void main(String[] args) {  4.        //待测试数据  5.        int i = 1;  6.        //得到一个Numb

2、erFormat的实例  7.        NumberFormat nf = NumberFormat.getInstance();  8.        //设置是否使用分组  9.        nf.setGroupingUsed(false);  10.        //设置最大整数位数  11.        nf.setMaximumIntegerDigits(4);  12.        //设置最小整数位数      13.        nf.setMinimumIntegerDigits(4);

3、  14.        //输出测试语句  15.        System.out.println(nf.format(i));  16.    }  17.}  importjava.text.NumberFormat;publicclassNumberFormatTest{publicstaticvoidmain(String[]args){//待测试数据inti=1;//得到一个NumberFormat的实例NumberFormatnf=NumberFormat.getInstance();//设置是否使用分组

4、nf.setGroupingUsed(false);//设置最大整数位数nf.setMaximumIntegerDigits(4);//设置最小整数位数nf.setMinimumIntegerDigits(4);//输出测试语句System.out.println(nf.format(i));}}(2)方法二(个人以为该方法简单有效,但经试验似乎String.format()函数有问题)[java]viewplaincopyprint?1.public class TestStringFormat {         2.

5、public static void main(String[] args) {         3.    int youNumber = 1;         4.    // 0 代表前面补充0         5.    // 4 代表长度为4         6.    // d 代表参数为正数型         7.    String str = String.format("%04d", youNumber);         he"governingforthepeople","Nomatterthein

6、terestsofthemasses"conceptunderstandingisnotinplace.Thespecificworktreatswiththedeployment,afewleadingcadrescomplainthatworkistoocomplicated,toomuchresponsibility,thepressureistoolarge,toomuchemphasisonthedifficultyofthework.Forexample,noncoalmine1.    System.out.

7、println(str); // 0001         2.}         3.}       publicclassTestStringFormat{publicstaticvoidmain(String[]args){intyouNumber=1;//0代表前面补充0//4代表长度为4//d代表参数为正数型Stringstr=String.format("%04d",youNumber);System.out.println(str);//0001}}(3)有时候我们需要固定长度的字符串做流水号,每添加一个记录

8、时流水号的值加1,而流水号的长度保持不变。一般的做法是先把流水号转换为数值型,然后此数值加1,再把数值转换为字符串,长度不够流水号长度时再在前面补0:[java]viewplaincopyprint?1.//流水号加1后返回  2.public static String haoAddOne(Strin

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。