属性类和转义字符

时间:2015-08-31 13:31:13

标签: java properties bufferedreader

我使用属性类将地图存储到文件中。 但有些角色是带有" \"在开头添加。

有没有办法使用Properties Class打印实际内容,而没有这些转义。

我正在使用属性类编写,但使用BufferedReader进行读取。 使用Properties Class编写时,我无法理解转义哪些字符。

有没有办法在没有这些转义的情况下使用BufferedReader读取数据?

例如:

如果实际内容为abc:def:ghi 当我将此值分配给名为name的属性并使用属性类将其存储在文件中时,它将存储为:

name=abc\:def\:ghi.

现在,当我使用BufferedReader读取此内容时,我在内容中也获得了所有\字符。

问题是我不知道所有字符都存储了添加的\字符。

1 个答案:

答案 0 :(得分:1)

所有特殊字符都由java.util.Properties转义。你无法提供它。

将在saveConvert中完成:

   /*
     * Converts unicodes to encoded \uxxxx and escapes
     * special characters with a preceding slash
     */
    private String saveConvert(String theString,
                               boolean escapeSpace,
                               boolean escapeUnicode) {
        int len = theString.length();
        int bufLen = len * 2;
        if (bufLen < 0) {
            bufLen = Integer.MAX_VALUE;
        }
        StringBuffer outBuffer = new StringBuffer(bufLen);

        for(int x=0; x<len; x++) {
            char aChar = theString.charAt(x);
            // Handle common case first, selecting largest block that
            // avoids the specials below
            if ((aChar > 61) && (aChar < 127)) {
                if (aChar == '\\') {
                    outBuffer.append('\\'); outBuffer.append('\\');
                    continue;
                }
                outBuffer.append(aChar);
                continue;
            }
            switch(aChar) {
                case ' ':
                    if (x == 0 || escapeSpace)
                        outBuffer.append('\\');
                    outBuffer.append(' ');
                    break;
                case '\t':outBuffer.append('\\'); outBuffer.append('t');
                          break;
                case '\n':outBuffer.append('\\'); outBuffer.append('n');
                          break;
                case '\r':outBuffer.append('\\'); outBuffer.append('r');
                          break;
                case '\f':outBuffer.append('\\'); outBuffer.append('f');
                          break;
                case '=': // Fall through
                case ':': // Fall through
                case '#': // Fall through
                case '!':
                    outBuffer.append('\\'); outBuffer.append(aChar);
                    break;
                default:
                    if (((aChar < 0x0020) || (aChar > 0x007e)) & escapeUnicode ) {
                        outBuffer.append('\\');
                        outBuffer.append('u');
                        outBuffer.append(toHex((aChar >> 12) & 0xF));
                        outBuffer.append(toHex((aChar >>  8) & 0xF));
                        outBuffer.append(toHex((aChar >>  4) & 0xF));
                        outBuffer.append(toHex( aChar        & 0xF));
                    } else {
                        outBuffer.append(aChar);
                    }
            }
        }
        return outBuffer.toString();
    }