자바 주문 번호 생 성(보안 은 중복 되 지 않 습 니 다)

package com.cdu.utils;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Random;

/**
 *         ,  32     ,
 * @     1     +17    +14 (  id  &   )
 * Date:2017 9 8   10:05:19
 * @author jiwengjian
 */
public class OrderCodeFactory {
    /**       */
    private static final String ORDER_CODE = "1";
    /**       */
    private static final String RETURN_ORDER = "2";
    /**       */
    private static final String REFUND_ORDER = "3";
    /**           */
    private static final String AGAIN_ORDER = "4";
    /**      */
    private static final int[] r = new int[]{7, 9, 6, 2, 8 , 1, 3, 0, 5, 4};
    /**   id        */
    private static final int maxLength = 14;
    
    /**
     *   id    +            
     */
    private static String toCode(Long id) {
        String idStr = id.toString();
        StringBuilder idsbs = new StringBuilder();
        for (int i = idStr.length() - 1 ; i >= 0; i--) {
            idsbs.append(r[idStr.charAt(i)-'0']);
        }
        return idsbs.append(getRandom(maxLength - idStr.length())).toString();
    }
     
    /**
     *      
     */
    private static String getDateTime(){
        DateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
        return sdf.format(new Date());
    }
    
    /**
     *          
     * @param n      
     */
    private static long getRandom(long n) {
        long min = 1,max = 9;
        for (int i = 1; i < n; i++) {
            min *= 10;
            max *= 10;
        }
        long rangeLong = (((long) (new Random().nextDouble() * (max - min)))) + min ;
        return rangeLong;
    }
    
    /**
     *            
     * @param userId
     */
    private static synchronized String getCode(Long userId){
        userId = userId == null ? 10000 : userId;
        return getDateTime() + toCode(userId);
    }
    
    /**
     *         
     * @param userId
     */
    public static String getOrderCode(Long userId){
        return ORDER_CODE + getCode(userId);
    }
    
    /**
     *         
     * @param userId
     */
    public static String getReturnCode(Long userId){
        return RETURN_ORDER + getCode(userId);
    }
    
    /**
     *         
     * @param userId
     */
    public static String getRefundCode(Long userId){
        return REFUND_ORDER + getCode(userId);
    }
    
    /**
     *        
     * @param userId
     */
    public static String getAgainCode(Long userId){
        return AGAIN_ORDER + getCode(userId);
    }
    
}

좋은 웹페이지 즐겨찾기