注册表读取和写入

Posted zhujie-com

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注册表读取和写入相关的知识,希望对你有一定的参考价值。

static void Main(string[] args)
{
RegistryKey regkey = Registry.CurrentUser.OpenSubKey("cc");
if (regkey != null)
{
Console.WriteLine(regkey.GetValue("UserName").ToString());//读取注册表
regkey.Close();
}
Console.ReadKey();
}
//创建和写入注册表
private static void Test()
{
RegistryKey regkey = Registry.CurrentUser.CreateSubKey("cc");//"cc"要取一个特殊的字符串,防止与系统或其他程序写注册表名称相同,
??????????? regkey.SetValue("UserName", "cwx776534");
regkey.Close();
}

以上是关于注册表读取和写入的主要内容,如果未能解决你的问题,请参考以下文章

vbscript 从32位应用程序读取和写入64位注册表

如何检查是不是允许用户读取/写入特定注册表项?

使用 Java 读取/写入 Windows 注册表

即使具有管理员权限也无法读取/写入 HKLM 注册表项和值

QSettings setvalue 方法将 QVariant 数据类型写入 Windows 注册表

MFC第十天(文件&注册表)