我們可以使用兩種方式初始化一個隨機數發生器:
??第一種方法不指定隨機種子,系統自動選取目前時間作為隨機種子:
??random ro = new Random();
執行個體
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();
for(int i=0;i<strLength;i++)
{
newRandom.Append(constant[rd.Next(62)]);
}
return newRandom.ToString();
}
??第二種方法可以指定一個int型參數作為隨機種子:
??int iSeed=10;
??random ro = new Random(10);
??之後,我們就可以使用這個random類的對象來產生隨機數,這時候要用到random.next()方法。這個方法使用相當靈活,你甚至可以指定產生的隨機數的上下限。
執行個體
/// <summary>
///產生指定位元的隨機數
/// </summary>
/// <param name="VcodeNum">產生幾位元</param>
/// <returns></returns>
private string RndNum(int VcodeNum)
{
string Vchar = "0,1,2,3,4,5,6,7,8,9";
Vchar = Vchar + ",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";
Vchar = Vchar.ToLower();
string[] VcArray = Vchar.Split(',');
string VNum = "";//由於字串很短,就不用StringBuilder了
int temp = -1;//記錄上次隨機數值,盡量避免生產幾個一樣的隨機數
//採用一個簡單的演算法以保證產生隨機數的不同
Random rand = new Random();
for (int i = 1; i < VcodeNum + 1; i++)
{
if (temp != -1)
{
rand = new Random(i * temp * unchecked((int)DateTime.Now.Ticks));
}
int t = rand.Next(35);
if (temp != -1 && temp == t)
{
return RndNum(VcodeNum);
}
temp = t;
VNum += VcArray[t];
}
return VNum;
}
2.然後定義一個方法 繪製驗證碼
/// <summary>
/// 建立指定數組的驗證碼
/// </summary>
/// <param name="checkCode">驗證碼</param>
private void CreateImage(string checkCode)
{
int iwidth = (int)(checkCode.Length * 15);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(iwidth, 25);
Graphics g = Graphics.FromImage(image);
g.Clear(Color.White);
//定義顏色
Color[] c = { Color.Black, Color.Red, Color.DarkBlue, Color.Green, Color.Brown, Color.DarkCyan, Color.Purple, Color.YellowGreen };
//定義字型
string[] font = { "Times New Roman", "Verdana", "Microsoft Sans Serif", "Comic Sans MS", "Arial", "宋體" };
Random rand = new Random();
//隨機輸出噪點
for (int i = 0; i < 50; i++)
{
int x = rand.Next(image.Width);
int y = rand.Next(image.Height);
//g.DrawRectangle(new Pen(Color.LightGray, 0), x, y, 1, 1);
g.DrawLine(new Pen(Color.LightPink, 0), x, y, 50, 23);
}
//輸出不同字型和顏色的驗證碼字元
for (int i = 0; i < checkCode.Length; i++)
{
int cindex = rand.Next(7);//從7種顏色中隨機取
int findex = rand.Next(6);//從6種字型中隨機取
Font f = new System.Drawing.Font(font[findex], 13, System.Drawing.FontStyle.Regular);
Brush b = new System.Drawing.SolidBrush(c[cindex]);
int ii = 4;
//偶數時產生的字元寬度為4,奇數時為2
if ((i + 1) % 2 == 0)
{
ii = 2;
}
g.DrawString(checkCode.Substring(i, 1), f, b, 3 + (i * 12), ii);
}
//畫一個邊框
g.DrawRectangle(new Pen(Color.Black, 0), 0, 0, image.Width - 1, image.Height - 1);
//輸出到瀏覽器
System.IO.MemoryStream ms = new System.IO.MemoryStream();
image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
Response.ClearContent();
Response.ContentType = "image/Jpeg";
Response.BinaryWrite(ms.ToArray());
g.Dispose();
image.Dispose();
}
3.在page_load事件中測試
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
string Code = this.RndNum(4);
Session["Code"] = Code;
this.CreateImage(Code);
}
}
總結
使用與時間相關的預設種子值,初始化 Random 類的新執行個體。
[Visual Basic] Public Sub New()
[C#] public Random();
[C++] public: Random();
[JScript] public function Random();
使用指定的種子值初始化 Random 類的新執行個體。
[Visual Basic] Public Sub New(Integer)
[C#] public Random(int);
[C++] public: Random(int);
[JScript] public function Random(int);
Next 已重載。返回隨機數。
NextBytes 用隨機數填充指定位元組數組的元素。
NextDouble 返回一個介於 0.0 和 1.0 之間的隨機數。