【发布时间】:2011-04-29 07:32:25
【问题描述】:
我必须在注册表分支中获取子键列表和值列表。
[DllImport("advapi32.dll", EntryPoint="RegEnumKeyExW",
CallingConvention=CallingConvention.Winapi)]
[MethodImpl(MethodImplOptions.PreserveSig)]
extern private static int RegEnumKeyEx(IntPtr hkey, uint index,
char[] lpName, ref uint lpcbName,
IntPtr reserved, IntPtr lpClass, IntPtr lpcbClass,
out long lpftLastWriteTime);
// Get the names of all subkeys underneath this registry key.
public String[] GetSubKeyNames()
{
lock(this)
{
if(hKey != IntPtr.Zero)
{
// Get the number of subkey names under the key.
uint numSubKeys, numValues;
RegQueryInfoKey(hKey, null,IntPtr.Zero, IntPtr.Zero,out numSubKeys, IntPtr.Zero, IntPtr.Zero, out numValues,IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);
// Create an array to hold the names.
String[] names = new String [numSubKeys];
StringBuilder sb = new StringBuilder();
uint MAX_REG_KEY_SIZE = 1024;
uint index = 0;
long writeTime;
while (index < numSubKeys)
{
sb = new StringBuilder();
if (RegEnumKeyEx(hKey,index,sb,ref MAX_REG_KEY_SIZE, IntPtr.Zero,IntPtr.Zero,IntPtr.Zero,out writeTime) != 0)
{
break;
}
names[(int)(index++)] = sb.ToString();
}
// Return the final name array to the caller.
return names;
}
return new String [0];
}
}
它现在运行良好,但仅适用于第一个元素。它返回 0-index 的键名,但对于其他它返回 ""。
怎么可能?
顺便说一句:我把我的定义换成了你的,很好用
【问题讨论】:
-
添加了调用定义。我没有添加 ArrayToString,因为在调试中我可以看到,“\0”的 char[1024] 已输入,而“\0”的 char[1024] 已输出。这就是为什么我认为问题出在程序中