在Java中,为什么WindowsPreferences使用斜杠作为大写字母?
我一直在使用java.util.prefs.Preferences功能(在Java 8中,在Windows机器上)。它可以工作,我可以在其中将新键写入Windows注册表。因此,我使用Preferences.systemRoot()来获取系统的Preferences对象,然后使用node()方法获取映射到Windows注册表中节点的Preferences对象。它正在创造美好的事物。
我用于节点的键是全大写字母的字符串(“RBI”)。当我查看Windows注册表中的节点时,它显示为“/ R / B / I”,名称中带有正斜杠。
我觉得这很奇怪,所以我挖了一下,看起来这是故意的。我发现在Windows环境(java.util.prefs.WindowsPreferences)上提供Preferences实现的类,并且该方法用于构建发送到Windows注册表的值是WindowsName的静态方法。在JavaDoc中....
/** * Converts value's or node's name to its Windows representation * as a byte-encoded string. * Two encodings, simple and altBase64 are used. * <p> * <i>Simple</i> encoding is used, if java string does not contain * any characters less, than 0x0020, or greater, than 0x007f. * Simple encoding adds "/" character to capital letters, i.e. * "A" is encoded as "/A". Character '\' is encoded as '//', * '/' is encoded as '\'. * The constructed string is converted to byte array by truncating the * highest byte and adding the terminating <tt>null</tt> character. * <p> * <i>altBase64</i> encoding is used, if java string does contain at least * one character less, than 0x0020, or greater, than 0x007f. * This encoding is marked by setting first two bytes of the * Windows string to '/!'. The java name is then encoded using * byteArrayToAltBase64() method from * Base64 class. */
因此,对于大写字母,简单编码将添加正斜杠。
有谁知道为什么需要这样做?我曾以为注册表可以处理区分大小写的值,但这似乎表明它不能?
我可以解决这个问题,我只是好奇为什么这样做。