java 0001加1,数字格式化

        DecimalFormat decimalFormat=new DecimalFormat("000000");
        String code="XQ20190417000019";
        String codenew=code.substring(10, code.length());
        int i=Integer.parseInt(codenew)+1;
        String k=decimalFormat.format(i);
        System.out.println(k); 

你可能感兴趣的:(java)