c#產生無重複的驗證碼

來源:互聯網
上載者:User

最近公司項目做了代金卷的業餘,需要產生隨機的8位元字,字母組合的條碼。現貼出2種程式源碼供大家學習和參考。

方法1.

       private static char[] constant = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
        public string pxkt_GetCharFont(int strLength)
        {
            System.Text.StringBuilder newRandom = new System.Text.StringBuilder(62);
            Random rd = new Random(Guid.NewGuid().GetHashCode());//保證產生的隨機字元永遠不重複 

         // Random rd= new Random(); //不能寫成這樣,數目小的60條左右沒問題,多了就會有很多重複
            for (int i = 0; i < strLength; i++)
            {
                newRandom.Append(constant[rd.Next(62)]);
            }
            return newRandom.ToString();
        }

方法2

public string RandomNum(int n) //
    {
        //定義一個包括數字、大寫英文字母和小寫英文字母的字串
        string strchar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z";
        //將strchar字串轉化為數組
        //String.Split 方法返回包含此執行個體中的子字串(由指定Char數組的元素分隔)的 String 數組。
        string[] VcArray = strchar.Split(',');
        string VNum = "";
        //記錄上次隨機數值,盡量避免產生幾個一樣的隨機數          
        int temp = -1;
        //採用一個簡單的演算法以保證產生隨機數的不同
          Random rd = new Random(Guid.NewGuid().GetHashCode());//保證產生的隨機字元永遠不重複 

         // Random rd= new Random(); //不能寫成這樣,數目小的60條左右沒問題,多了就會有很多重複

        for (int i = 1; i < n + 1; i++)
        {
            if (temp != -1)
            {
                //unchecked 關鍵字用於取消整型算術運算和轉換的溢出檢查。
                //DateTime.Ticks 屬性擷取表示此執行個體的日期和時間的刻度數。
                rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
            }
            //Random.Next 方法返回一個小於所指定最大值的非負隨機數。
            int t = rand.Next(61);
            if (temp != -1 && temp == t)
            {
                return RandomNum(n);
            }
            temp = t;
            VNum += VcArray[t];
        }
        return VNum;//返回產生的隨機數
    }
 

}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.