这是以前在网上找到的一个例子,具体网址忘了。所以不能给出引用链接,向作者致歉!
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Random;
public class RandomGUID extends Object {
public String valueBeforeMD5 = "";
public String valueAfterMD5 = "";
private static Random myRand;
private static SecureRandom mySecureRand;
private static String s_id;
/*
* Static block to take care of one time secureRandom seed.
* It takes a few seconds to initialize SecureRandom. You might
* want to consider removing this static block or replacing
* it with a "time since first loaded" seed to reduce this time.
* This block will run only once per JVM instance.
*/
static {
mySecureRand = new SecureRandom();
long secureInitializer = mySecureRand.nextLong();
myRand = new Random(secureInitializer);
try {
s_id = InetAddress.getLocalHost().toString();
} catch (UnknownHostException e) {
e.printStackTrace();
}
}
/*
* Default constructor. With no specification of security option,
* this constructor defaults to lower security, high performance.
*/
public RandomGUID() {
getRandomGUID(false);
}
/*
* Constructor with security option. Setting secure true
* enables each random number generated to be cryptographically
* strong. Secure false defaults to the standard Random function seeded
* with a single cryptographically strong random number.
*/
public RandomGUID(boolean secure) {
getRandomGUID(secure);
}
/*
* Method to generate the random GUID
*/
private void getRandomGUID(boolean secure) {
MessageDigest md5 = null;
StringBuffer sbValueBeforeMD5 = new StringBuffer();
try {
md5 = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
System.out.println("Error: " + e);
}
try {
long time = System.currentTimeMillis();
long rand = 0;
if (secure) {
rand = mySecureRand.nextLong();
} else {
rand = myRand.nextLong();
}
// This StringBuffer can be a long as you need; the MD5
// hash will always return 128 bits. You can change
// the seed to include anything you want here.
// You could even stream a file through the MD5 making
// the odds of guessing it at least as great as that
// of guessing the contents of the file!
sbValueBeforeMD5.append(s_id);
sbValueBeforeMD5.append(":");
sbValueBeforeMD5.append(Long.toString(time));
sbValueBeforeMD5.append(":");
sbValueBeforeMD5.append(Long.toString(rand));
valueBeforeMD5 = sbValueBeforeMD5.toString();
md5.update(valueBeforeMD5.getBytes());
byte[] array = md5.digest();
StringBuffer sb = new StringBuffer();
for (int j = 0; j < array.length; ++j) {
int b = array[j] & 0xFF;
if (b < 0x10) sb.append('0');
sb.append(Integer.toHexString(b));
}
valueAfterMD5 = sb.toString();
} catch (Exception e) {
System.out.println("Error:" + e);
}
}
/*
* Convert to the standard format for GUID
* (Useful for SQL Server UniqueIdentifiers, etc.)
* Example: C2FEEEAC-CFCD-11D1-8B05-00600806D9B6
*/
public String toString() {
String raw = valueAfterMD5.toUpperCase();
StringBuffer sb = new StringBuffer();
sb.append(raw.substring(0, 8));
sb.append("-");
sb.append(raw.substring(8, 12));
sb.append("-");
sb.append(raw.substring(12, 16));
sb.append("-");
sb.append(raw.substring(16, 20));
sb.append("-");
sb.append(raw.substring(20));
return sb.toString();
}
/*
* Demonstraton and self test of class
*/
public static void main(String args[]) {
RandomGUID myGUID = new RandomGUID();
System.out.println("valueBeforeMD5 -->" + myGUID.valueBeforeMD5);
System.out.println("valueAfterMD5 -->" + myGUID.valueAfterMD5);
System.out.println("RandomGUID=" + myGUID.toString());
}
}
控制台打印:
valueBeforeMD5 -->agp138/168.9.201.138:1354181875222:2617300098220936058
valueAfterMD5 -->ea1d90c35ad3662aeadf585c1d6ecd02
RandomGUID=EA1D90C3-5AD3-662A-EADF-585C1D6ECD02
分享到:
相关推荐
在循环内部,使用`NEWID()`函数生成一个新的GUID,并将其赋值给`@tempid`。之后,将`@tempid`的值插入到`#TEMP`表中。每次循环结束后,`@i`自增1,直到达到30次。 ```sql WHILE @i BEGIN SET @tempid = NEWID(); ...
通过这样的实践,我们可以学习到如何在.NET环境中利用GUID生成随机数,并将其应用到特定的业务场景中,如模拟抽奖或游戏。同时,这也是一个很好的机会去理解和实践Windows Forms开发,增强桌面应用程序的编程技能。
以一个具体的项目为例,目标平台是一块包含ASIC(专用集成电路)、MIPS CPU以及北桥接口(用于连接CPU和其他高速组件)的开发板。这块开发板还支持EDO DRAM、闪存ROM、I2C RTC、I2C EEPROM和I2C串行总线。下文将详细...
那么在保存一个订单时,会要求对主档表与明细表同进行事务保存,而此时,先要生成一条订单,然后取出这个订单自动生成的主键, 然后再把此作为明细表的一个外键,进行明细的保存.这过程中,将变以复杂而且不可行.事务如何...
在项目设置中,选择支持COM,并为接口和类生成相应的GUID。 2. **实现IUnknown**:为你的COM组件类实现IUnknown接口,确保正确地管理对象的生命周期和引用计数。 3. **定义接口**:定义一个自定义接口,比如...
以ZXing.NET为例,它是一个开源的、跨平台的条码处理库,支持多种条码格式。 要使用ZXing.NET生成条码,首先需要在项目中添加对ZXing库的引用。可以通过NuGet包管理器安装,命令为:“Install-Package ZXing.Net”...
3. 在`TestCommand`类中,创建一个方法来填充MRU列表。这个方法需要查询VSPackage,获取最近使用的命令项,并根据这些信息动态更新`cmdidMRUList`命令项的内容。 实现MRU列表的逻辑通常涉及以下几个方面: - 初始化...
2. `[Guid]::NewGuid()` - 这会生成一个新的GUID。 3. `[DateTime]::MaxValue.ToFileTime()` - 这会返回文件时间的最大值。 执行完这些命令后,你会看到对应的结果,将这些值复制到记事本中以备后续使用。 有了...
4. 主键类型可以是字符型的,我们可以定义一个字段存放一个数值,在生成时,自动加一,然后再存回去。 主键的设计是数据库设计中非常重要的一步。我们应该遵循上述原则,设计一个好的主键,提高数据库的性能和可...
- **添加GUID**:为控件类添加GUID,以便客户端能够识别和调用该控件。可以通过Visual Studio中的“工具”>“创建 GUID”菜单项来生成新的GUID。 - **注册控件**:确保项目编译后,使用regasm.exe命令行工具注册生成...
// 使用GUID生成唯一文件名 imageFileName = Guid.NewGuid().ToString() + System.IO.Path.GetExtension(file.FileName); // 拼接图片保存路径 string pathPart = "/BrandCombinationImages/" + imageFileName;...
- 输入`[Guid]::NewGuid()`以生成一个新的GUID。 - 输入`[DateTime]::MaxValue.ToFileTime()`以获取最大可能的FileTime值。 3. **记录参数**:将上述步骤中得到的SID、GUID和FileTime值记录下来。 #### 四、添加...
- 在创建启动条目的过程中会生成一个GUID(全局唯一标识符),示例如下: - `{GUID}: {2f85c58d-afff-11de-bd85-db4c18943381}` - 这个GUID将用于后续设置中指定具体的启动条目。 **2.3 配置完成后检查** - 使用...
文件名"{90140000-0011-0000-0000-0000000FF1CE}"是一个典型的Office 2010组件的GUID(全局唯一标识符),这通常表示一个特定的模块或者组件。在Office 2010中,每个组件都有一个唯一的GUID,这可能代表了Office的一...
这里值得注意的是,每一条插入语句都包含了`GUID`字段的自动生成,这是通过调用`Guid.NewGuid()`方法实现的,确保每个记录都有一个唯一的标识符。此外,通过使用`StringBuilder`类进行SQL语句的构建,可以有效地避免...
以OffADO.MyClass1为例,它有一个Interface叫_MyClass1(类名前加下划线),_MyClass1包含了Myclass1类中所有公开的Function和Property Get/Let。虽然在Interface中没有Property,但VB通过Property Get/Let来模拟...
本文将详细讲解如何通过`IMenuCommandService`接口来实现这一功能,以“改变菜单项的文字”为例,介绍具体的步骤和关键代码。 首先,创建一个名为`MenuText`的VSIX(Visual Studio Extension)项目,这将是我们的...
- **GPT (GUID Partition Table)**:一种较新的硬盘分区方案,用于替代传统的MBR (Master Boot Record)。GPT支持更大的硬盘空间,最多可以定义128个主分区,并且有更好的错误检测和恢复能力。 #### 二、安装准备 - ...
GUID是每个域控制器的唯一标识,它是一种随机生成的数字,通常不会重复,因此可以作为最后的决定因素。 现在,让我们以一个具体的场景为例来理解AD授权还原的过程。假设我们有两个域控制器——Florence和Firenze。...
在本例中,使用Guid.NewGuid()方法生成一个唯一的文件名称,并将其与FTP服务器的路径进行拼接。 string ftpPath = client.BaseAddress + "/TestFileUpLoad/" + Guid.NewGuid(); 然后,使用WebClient对象的...