如果值小于等于9,如何使用零作为前缀

时间:2014-07-07 08:06:59

标签: java android

如果值小于等于9 ,如何添加零作为前缀,我正在使用以下方式实现此目的:

            int countZero = 0;

            if(countVat <= 9)
            {
                countVat = countZero + countVat;
                Log.d("countVat:", String.valueOf(countVat));
            }

但这对我不起作用,如果countVat值小于等于9 ,仍会获得单位数。

1 个答案:

答案 0 :(得分:3)

使用String.format

String.format("%02d", num);