1

我有一个问题,我正在尝试从文件中读取一组键和值对(如字典)。为此,我使用以下代码:

 InputStream is = this.getClass().getResourceAsStream(PROPERTIES_BUNDLE);
     properties=new Hashtable();

     InputStreamReader isr=new InputStreamReader(is);
     LineReader lineReader=new LineReader(isr);
     try {
        while (lineReader.hasLine()) {
            String line=lineReader.readLine();
            if(line.length()>1 && line.substring(0,1).equals("#")) continue;
            if(line.indexOf("=")!=-1){
                String key=line.substring(0,line.indexOf("="));
                String value=line.substring(line.indexOf("=")+1,line.length());
                properties.put(key, value);
            }               
        }
    } catch (IOException e) {
        e.printStackTrace();
    }

和 readLine 函数。

  public String readLine() throws IOException{
    int tmp;
    StringBuffer out=new StringBuffer();
    //Read in data
    while(true){
        //Check the bucket first. If empty read from the input stream
        if(bucket!=-1){
            tmp=bucket;
            bucket=-1;
        }else{
            tmp=in.read();
            if(tmp==-1)break;
        }
        //If new line, then discard it. If we get a \r, we need to look ahead so can use bucket
        if(tmp=='\r'){
            int nextChar=in.read();
            if(tmp!='\n')bucket=nextChar;//Ignores \r\n, but not \r\r
            break;
        }else if(tmp=='\n'){
            break;
        }else{
            //Otherwise just append the character
            out.append((char) tmp);
        }
    }
    return out.toString();
}

一切都很好,但是我希望它能够解析特殊字符。例如: ó 这将被编入 \u00F3,但在这种情况下,它不会用正确的字符替换它......该怎么做?

编辑:忘了说,因为我使用的是 JavaME,所以 Properties 类或任何类似的东西都不存在,这就是为什么我似乎在重新发明轮子......

4

2 回答 2

2

如果它是用 UTF-16 编码的,你能不只是 InputStreamReader isr = new InputStreamReader(is, "UTF16")吗?

这将从一开始就识别您的特殊字符,您无需进行任何替换。

于 2012-05-28T17:09:16.873 回答
1

您需要确保在 InputStreamReader 中将字符编码设置为文件的字符编码。如果它不匹配某些字符可能是不正确的。

于 2012-05-28T17:08:39.447 回答