Java字符串长度不够前面或后面补0nbsp;

1、 第一种字符串补0 public static String addZeroForNum(String str, int strLength) {     int strLen = str.length();     StringBuffer sb = null;     while (strLen < strLength) {           sb = new StringBuffer();           sb.append("0").append(str);// 左补0       // sb.append(str).append("0");//右补0           str = sb.toString();           strLen = str.length();     }     return str; }
2、数字流水号长度不够补0方法 public static String codeAddOne(String code, int len){   Integer intHao = Integer.parseInt(code);   intHao++;   String strHao = intHao.toString();   while (strHao.length() < len) {       strHao = "0" + strHao;     }   return strHao; }
用java中的DecimalFormat,可以简化:
// 流水号加1后返回,流水号长度为15
private static final String STR_FORMAT = "000000000000"; 
public static String haoAddOne(String liuShuiHao){
    Integer intHao = Integer.parseInt(liuShuiHao);
    intHao++;
    DecimalFormat df = new DecimalFormat(STR_FORMAT);
    return df.format(intHao);
}