admin 管理员组文章数量: 887007
Java 后台逻辑,合同编号生成
/*** 生产合同编号* @param maxCount* @return*/public static String recountNew(int maxCount) {if(maxCount<0) {return null;}// 20170731FXJT99999999SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");String str = format.format(new Date());maxCount=maxCount+1;NumberFormat nf = NumberFormat.getInstance(); //设置是否使用分组 nf.setGroupingUsed(false); //设置最大整数位数 nf.setMaximumIntegerDigits(9); //设置最小整数位数 nf.setMinimumIntegerDigits(9); String countStr=str+"FXJT"+nf.format(maxCount);System.out.println("合同编号: " +countStr); return countStr;}
版权声明:本文标题:Java 后台逻辑,合同编号生成 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732354058h1533928.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论