用Visual C#来删除注册表中的注册信息

在《用Visual C#读取注册信息》的文中,已经介绍了用 Visual C#来读取注册表中的注册信息。本文就来介绍用Visual C#对注册表的另外一个操作,这也是一个具有破坏性的操作过程--删除注册信息。

在上文中已经知道,由于Visual C#本身没有带类库,他对注册表的处理过程是通过调用.Net FrameWork SDK中的名称空间Microsoft.Win32中封装的二个类来实现的。这二个类就是Registry类、RegistryKey类。在RegistryKey类中定义了三个方法来删除注册表中的注册信息。他们分别是:DeleteSubKey ( )方法、DeleteSubKeyTree ( )方法、DeleteValue ( )方法。下面就具体介绍一下在Visual C#中如何正确使用这三个方法。

一.如何用Visual C#中调用这三个方法:
在介绍如何使用这三个方法之前,还需要重新介绍一下RegistryKey类中的一个方法--OpenSubKey ( )方法。在上一文中已经介绍了,此方法是打开指定的子键。其实OpenSubKey( )方法有二种调用的方式:

I > .OpenSubKey ( string , subkey ) :这种调用方式是对于此子键只是进行读操作。
II > .OpenSubKey ( string subkey , Boolean writable ):当对子键使用写操作的时候要用此种调用方法。如果在对子键使用了写操作,但仍然使用第一种调用方法,在程序运行的时候会产生一个错误信息。

(1). DeleteSubKey ( )方法:
此方法是删除一个指定的子键,在使用此方法的时候,如果在此子键中还存在另外的子键,则会产生一个错误信息。在程序中调用此方法有二种原型,为:
I > . DeleteSubKey ( string , subkey ):这种调用方式就是直接删除指定的子键。

II > . DeleteSubKey ( string subkey , Boolean info ):其中的"string"是要删除的子键的名称,"Boolean"参数的意思是:如果值为"True",则在程序调用的时候,删除的子键不存在,则产生一个错误信息;如果值为"False",则在程序调用的时候,删除的子键不存在,也不产生错误信息,程序依然正确运行。所以在具体的程序设计过程中,我还是推荐使用第二种调用方法。

(2). DeleteSubKeyTree ( )方法:
此方法是彻底删除指定的子键目录,即:删除该子键以及该子键以下的全部子键。由于此方法的破坏性是非常强的,所有在使用的时候要非常主要。在程序中调用此方法的原型就一种,为:

DeleteSubKeyTree ( string subkey ):其中"subkey"就是要彻底删除的子键名称。

(3). DeleteValue ( )方法:
此方法是删除指定的键值。在程序中调用此方法的原型就一种,为:
DeleteValue ( string value ):其中"value"就是要删除的键值的名称。
在介绍完与删除注册表中注册信息有关方法后,将通过一个程序来说明他们在程序中具体用法。

二. 程序设计和运行环境以及要准备的工作:
I > .视窗系统2000服务器版

II > ..Net FrameWork SDK Beta 2版

III > .由于程序的功能是删除指定的主键、子键和键值,这就需要我们在注册表中先为设置好这些值的位置和名称。具体如下:
在HKEY_LOCAL_MACHINE主键下面的"SOFTWARE"子键中建立如下子键和键值:
在"SOFTWARE"子键下建立"aaa"子键。在"aaa"子键下面建立"bbb"子键和"ddd"子键。在"bbb"子键中建立名称为"ccc"的键值,键值的值为"ccc"。子"ddd"子键中建立子键"eee",并在此子键中建立一个"fff"键值,键值的值为"fff"。程序中要删除的键值是"ccc"键值,要删除的子键是"bbb",要彻底删除的子键是"ddd"。具体设定如下图所示:


01:为程序设定的注册表结构图


三. 程序设计的重要步骤:
程序设计的主要步骤就是如何删除键值、不包含任何子键的子键、包含子键的子键。下面就通过程序来具体说明:
(1).如何删除键值。在程序中要删除键值是"ccc"。以下就是程序中删除此键值的具体语句。

1 RegistryKey hklm = Registry.LocalMachine ;
2 RegistryKey software = hklm.OpenSubKey ( " SOFTWARE " , true ) ;
3 // 打开"SOFTWARE"子键
4 RegistryKey no1 = software.OpenSubKey ( " aaa " , true ) ;
5 // 打开"aaa"子键
6 RegistryKey no2 = no1.OpenSubKey ( " bbb " , true ) ;
7 // 打开"bbb"子键
8 no2.DeleteValue( " ccc " ) ;
9 // 删除名称为"ccc"的键值


(2).如何删除不包含任何子键的子键。在程序要删除的子键是"bbb"。以下就是删除此子键的具体程序代码:

1 RegistryKey hklm = Registry.LocalMachine ;
2 RegistryKey software = hklm.OpenSubKey ( " SOFTWARE " , true ) ;
3 // 打开"SOFTWARE"子键
4 RegistryKey no1 = software.OpenSubKey ( " aaa " , true ) ;
5 // 打开"aaa"子键
6 no1.DeleteSubKey ( " bbb " , false );
7 // 删除名称为"bbb"的子键


(3).如何删除包含子键的子键。在程序中要删除的此子键是"ddd"。以下就是删除此子键的具体程序代码:

1 RegistryKey hklm = Registry.LocalMachine ;
2 hklm.DeleteSubKey ( " aaa " , false );
3 RegistryKey software = hklm.OpenSubKey ( " SOFTWARE " , true ) ;
4 // 打开"SOFTWARE"子键
5 RegistryKey no1 = software.OpenSubKey ( " aaa " , true ) ;
6 // 打开"aaa"子键
7 no1.DeleteSubKeyTree ( " ddd " );
8 // 删除名称为"ddd"的子键

四. 本文中的程序源代码( reg.cs )以及运行界面:

reg.cs程序的主要功能就是删除注册表中的键值、不包含子键的子键和包含子键的子键。并且通过按钮"读取注册表",以列表的显示方法来及时了解删除的情况。

reg.cs程序源代码如下:

1 using System;
2 using System.Drawing;
3 using System.Collections;
4 using System.ComponentModel;
5 using System.Windows.Forms;
6 using System.Data;
7 using Microsoft.Win32;
8 public class Form1 : Form
9 {
10privateSystem.ComponentModel.Container components;
11privateListBox listBox1;
12privateButton button1;
13privateButton button2;
14privateButton button3;
15privateButton button4;
16publicForm1()
17{
18InitializeComponent();
19}

20//清除在程序中使用过的资源
21publicoverridevoidDispose()
22{
23base.Dispose();
24components.Dispose();
25}

26//初始化程序中使用到的组件
27privatevoidInitializeComponent()
28{
29components =newSystem.ComponentModel.Container();
30button1 =newButton();
31button2 =newButton();
32button3 =newButton();
33button4 =newButton();
34listBox1 =newListBox();
35
36button1.Location =newSystem.Drawing.Point(16, 320);
37button1.Size =newSystem.Drawing.Size(75, 23);
38button1.TabIndex =0;
39button1.Text ="读取注册表";
40button1.Click +=newSystem.EventHandler(button1_Click);
41
42button2.Location =newSystem.Drawing.Point(116, 320);
43button2.Size =newSystem.Drawing.Size(75, 23);
44button2.TabIndex =0;
45button2.Text ="删除键值ccc";
46button2.Click +=newSystem.EventHandler(button2_Click);
47
48button3.Location =newSystem.Drawing.Point(216, 320);
49button3.Size =newSystem.Drawing.Size(75, 23);
50button3.TabIndex =0;
51button3.Text ="删除子键bbb";
52button3.Click +=newSystem.EventHandler(button3_Click);
53
54button4.Location =newSystem.Drawing.Point(316, 320);
55button4.Size =newSystem.Drawing.Size(75, 23);
56button4.TabIndex =0;
57button4.Text ="删除主键ddd";
58button4.Click +=newSystem.EventHandler(button4_Click);
59
60listBox1.Location =newSystem.Drawing.Point(16, 32);
61listBox1.Size =newSystem.Drawing.Size(496, 264);
62listBox1.TabIndex =1;
63
64this.Text ="用Visual C#来删除注册表中的主键、子键和键值!";
65this.AutoScaleBaseSize =newSystem.Drawing.Size(5, 13);
66this.ClientSize =newSystem.Drawing.Size(528, 357);
67this.Controls.Add(listBox1);
68this.Controls.Add(button1);
69this.Controls.Add(button2);
70this.Controls.Add(button3);
71this.Controls.Add(button4);
72}

73protectedvoidbutton1_Click(objectsender, System.EventArgs e)
74{
75listBox1.Items.Clear();
76RegistryKey hklm =Registry.LocalMachine;
77RegistryKey software =hklm.OpenSubKey("SOFTWARE");
78//打开"SOFTWARE"子键
79RegistryKey no1 =software.OpenSubKey("aaa");
80//打开"aaa"子键
81foreach(stringsite inno1.GetSubKeyNames())
82//开始遍历由子键名称组成的字符串数组
83{
84listBox1.Items.Add(site);
85//在列表中加入子键名称
86RegistryKey sitekey =no1.OpenSubKey(site);
87//打开此子键
88foreach(stringsValName insitekey.GetValueNames())
89//开始遍历由指定子键拥有的键值名称组成的字符串数组
90{
91listBox1.Items.Add(""+sValName +": "+sitekey.GetValue(sValName));
92//在列表中加入键名称和对应的键值
93}

94}

95}

96protectedvoidbutton2_Click(objectsender, System.EventArgs e)
97{
98RegistryKey hklm =Registry.LocalMachine;
99RegistryKey software =hklm.OpenSubKey("SOFTWARE", true);
100//打开"SOFTWARE"子键
101RegistryKey no1 =software.OpenSubKey("aaa", true);
102//打开"aaa"子键
103RegistryKey no2 =no1.OpenSubKey("bbb", true);
104//打开"bbb"子键
105no2.DeleteValue("ccc");
106//删除名称为"ccc"的键值
107}

108protectedvoidbutton3_Click(objectsender, System.EventArgs e)
109{
110RegistryKey hklm =Registry.LocalMachine;
111RegistryKey software =hklm.OpenSubKey("SOFTWARE", true);
112//打开"SOFTWARE"子键
113RegistryKey no1 =software.OpenSubKey("aaa", true);
114//打开"aaa"子键
115no1.DeleteSubKey("bbb", false);
116//删除名称为"bbb"的子键
117}

118protectedvoidbutton4_Click(objectsender, System.EventArgs e)
119{
120RegistryKey hklm =Registry.LocalMachine;
121hklm.DeleteSubKey("aaa", false);
122RegistryKey software =hklm.OpenSubKey("SOFTWARE", true);
123//打开"SOFTWARE"子键
124RegistryKey no1 =software.OpenSubKey("aaa", true);
125//打开"aaa"子键
126no1.DeleteSubKeyTree("ddd");
127//删除名称为"ddd"的子键
128}

129publicstaticvoidMain()
130{
131Application.Run(c
分享到:
评论
isiqi
  • 浏览: 4170685 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

你可能感兴趣的:(C++,c,.net,C#,Microsoft)