Java uses UUID to generate 19 random numbers of pure digits, numbers + letters only not repeat number

Source: Internet
Author: User
Tags uuid
/**
 * Created by CC 
 * Generates order number
 * Uuid:db30cc85-3387-4845-87bc-dc390b55b7ea Top 8 + 201508171108900 (YYMMDDHHMMSS )
 * namely: db30cc85201508171108900/Public
class Ordernoutil {

public static  string Getorderno () {
    string orderNo = "";
 UUID uuid = Uuid.randomuuid ();
String Trandno = string.valueof (Math.random () * 9 + 1) * 1000000);
    String SDF = new SimpleDateFormat ("YYYYMMDDHHMMSS"). Format (new Date ());
    OrderNo = uuid.tostring (). substring (0, 8);
    OrderNo = OrderNo + sdf;
    return orderNo;
}

Generate 19 random number of pure digits
public static string Getorderno () {String orderNo = ""; String Trandno = String. ValueOf ((Math. Random () * 9 + 1) * 1000000); String SDF = new SimpleDateFormat ("YYYYMMDDHHMMSS"). Format (new Date ()); OrderNo = trandno.tostring (). substring (0, 4); OrderNo = OrderNo + sdf; return orderNo; }}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.