补0
方式1
//Java 中给数字左边补0
public class NumberFormatTest {
public static void main(String[] args) {
// 待测试数据
int i = 1;
// 得到一个NumberFormat的实例
NumberFormat nf = NumberFormat.getInstance();
// 设置是否使用分组
nf.setGroupingUsed(false);
// 设置最大整数位数
nf.setMaximumIntegerDigits(4);
// 设置最小整数位数
nf.setMinimumIntegerDigits(4);
// 输出测试语句
System.out.println(nf.format(i));
}
}
方式2
/**
* Java里数字转字符串前面自动补0的实现。
*
*/
public class TestStringFormat {
public static void main(String[] args) {
int youNumber = 1;
// 0 代表前面补充0
// 4 代表长度为4
// d 代表参数为正数型
String str = String.format("%04d", youNumber);
System.out.println(str); // 0001
}
}
方式3
//流水号加1后返回,流水号长度为4
private static final String STR_FORMAT = "0000";
public static String haoAddOne_2(String liuShuiHao){
Integer intHao = Integer.parseInt(liuShuiHao);
intHao++;
DecimalFormat df = new DecimalFormat(STR_FORMAT);
return df.format(intHao);
}
去开始0
方式一:
例如:”0000123” (字符串必须全为数字)
处理过程:
String tempStr = "0000123";
int result = Integer.parseInt(tempStr);
result 结果:123
方式二:
例如:”0000123”
处理过程:
String str = "0000123";
String newStr = str.replaceFirst("^0*", "");
System.out.println(newStr);
打印结果:123
方式三:
例如:”0000123”
处理过程:
String str = "0000123";
String newStr = str.replaceAll("^(0+)", "");
System.out.println(newStr);
打印结果:123
网友评论