欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java生成申请单序列号的实现方法

程序员文章站 2024-02-13 19:50:22
复制代码 代码如下:import java.text.simpledateformat;import java.util.date; import org.apache....

复制代码 代码如下:

import java.text.simpledateformat;
import java.util.date;

import org.apache.commons.lang3.stringutils;

/**
 * 产生流水号工具类
 * @version v1.0
 * @date: 2013-11-16 下午5:21:37
 */

public class serialnum {

 private static string count = "000";
 private static string datevalue = "20131115";

 /**
  * 产生流水号
  */
 public synchronized static string getmoveorderno() {
  long no = 0;
  simpledateformat sdf = new simpledateformat("yyyymmdd");
  string nowdate = sdf.format(new date());
  no = long.parselong(nowdate);
  if (!(string.valueof(no)).equals(datevalue)) {
   count = "000";
   datevalue = string.valueof(no);
  }
  string num = string.valueof(no);
  num += getno(count);
  num = "cb" + num;
  return num;
 }

 /**
  * 获取撤展单序列号
  */
 public synchronized static string getmoveorderno(string serialnum) {
  string nyr = stringutils.substring(serialnum, 2, 10); // 获取年月日字符串
  string countv = stringutils.substring(serialnum, 10); // 获取流水号
  if (integer.valueof(countv) > integer.valueof(count)) {
   datevalue = nyr;
   count = string.valueof(countv);
  }
  return getmoveorderno();
 }

 /**
  * 返回当天的订单数+1
  */
 public static string getno(string s) {
  string rs = s;
  int i = integer.parseint(rs);
  i += 1;
  rs = "" + i;
  for (int j = rs.length(); j < 3; j++) {
   rs = "0" + rs;
  }
  count = rs;
  return rs;
 }

 public static void main(string[] args) {
  for (int i = 0; i < 10; i++) {
   system.out.println(getmoveorderno());
  }
 }

}

注意:上面的程序如果服务器一直能够正常运行就不会出什么问题,要是重启服务器或者中间出现什么故障需要重启服务都可能造成重复序列号的产生,为了能够保证唯一,我们需要配合上数据库的查询,查询最后一条记录,然后拿出序列号在调用getmoveorderno(string serialnum)这个方法,就能够保证什么情况下生成的序列号都是正确唯一的。