在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
下面我们就来用.NET下托管语言C#注册表操作,主要内容包括:注册表项的创建,打开与删除、键值的创建(设置值、修改),读取和删除、判断注册表项是否存在、判断键值是否存在。 using Microsoft.Win32;
在这个命名空间里面包含了许多注册表相关的类,足够我们使用了~~
RegistryKey key = Registry.LocalMachine; RegistryKey software = key.CreateSubKey("software\\test"); //在HKEY_LOCAL_MACHINE\SOFTWARE下新建名为test的注册表项。如果已经存在则不影响!
RegistryKey key = Registry.LocalMachine; RegistryKey software = key.OpenSubKey("software\\test",true); //注意该方法后面还可以有一个布尔型的参数,true表示可以写入。
RegistryKey key = Registry.LocalMachine; key.DeleteSubKey("software\\test",true); //该方法无返回值,直接调用即可 key.Close();
注意,如果该注册表项不存在,这调用这个方法会抛出异常
RegistryKey key = Registry.LocalMachine; RegistryKey software = key.OpenSubKey("software\\test",true); //该项必须已存在 software.SetValue("test", "博客园"); //在HKEY_LOCAL_MACHINE\SOFTWARE\test下创建一个名为“test”,值为“博客园”的键值。如果该键值原本已经存在,则会修改替换原来的键值,如果不存在则是创建该键值。 // 注意:SetValue()还有第三个参数,主要是用于设置键值的类型,如:字符串,二进制,Dword等等~~默认是字符串。如: // software.SetValue("test", "0", RegistryValueKind.DWord); //二进制信息 Key.Close();
string info = ""; RegistryKey Key; Key = Registry.LocalMachine; myreg = Key.OpenSubKey("software\\test"); // myreg = Key.OpenSubKey("software\\test",true); info = myreg.GetValue("test").ToString(); myreg.Close(); info结果为:博客园
RegistryKey delKey = Registry.LocalMachine.OpenSubKey("Software\\test", true); delKey.DeleteValue("test"); delKey.Close(); 细心的读者可能发现了第二个例子中OpenSubKey()方法参数与其他例子的不同。
private bool IsRegeditItemExist() { string [] subkeyNames; RegistryKey hkml = Registry.LocalMachine; RegistryKey software = hkml.OpenSubKey("SOFTWARE"); //RegistryKey software = hkml.OpenSubKey("SOFTWARE", true); subkeyNames = software.GetSubKeyNames(); //取得该项下所有子项的名称的序列,并传递给预定的数组中 foreach (string keyName in subkeyNames) //遍历整个数组 { if (keyName == "test") //判断子项的名称 { hkml.Close(); return true ; } } hkml.Close(); return false; }
四:判断键值是否存在 private bool IsRegeditKeyExit() { string[] subkeyNames; RegistryKey hkml = Registry.LocalMachine; RegistryKey software = hkml.OpenSubKey("SOFTWARE\\test"); //RegistryKey software = hkml.OpenSubKey("SOFTWARE\\test", true); subkeyNames = software.GetValueNames(); //取得该项下所有键值的名称的序列,并传递给预定的数组中 foreach (string keyName in subkeyNames) { if (keyName == "test") //判断键值的名称 { hkml.Close(); return true; } } hkml.Close(); return false; }
C#注册表操作的相关知识就介绍到这里,希望大家喜欢。
其他参考: http://hi.baidu.com/redflower1004/item/19ecf85fbee5a9474eff20e6 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论