人生之第一个java class程序于今晚生成了[中达打印标签流水号]

来源:互联网 发布:油皮面膜知乎 编辑:程序博客网 时间:2024/05/16 19:06
package com.test.comment;public class test {/** * @param args * @return  */public String makeString(String i){int temp = Integer.parseInt(i);//转成整数temp+=1;String tempNew=String.valueOf(temp);int length=6;//最大长度String Result="";for(int k=0;k<(length-tempNew.length());k++){Result+='0';}Result+=tempNew;return Result;}public static void main(String[] args) {// TODO Auto-generated method stubtest wc=new test();System.out.println(wc.makeString("13323"));}}//test