用java读取
注册表文件,修改某些内容后,再生成新的注册表文件。在实现时,遇到些
编码问题,现记录下,备忘。
注册表文件是Unicode编码类型文件,java按默认的方式读取内容后,显示不正常,且不能处理注册表文件里的中文。在生成新注册表后,如果按默认方式直接将内容写入文件中,也不能用。 查阅后,原来是编码导致。
在文件 读 与 写的时候,都可以 指定编码类型,需要指定文件本来的编码方式。
读取注册表:
File file = new File(regFilePath);
Long filelength = file.length();
byte[] filecontent = new byte[filelength.intValue()];
try {
FileInputStream in = new FileInputStream(file);
in.read(filecontent);
in.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
String content= new String(filecontent, "Unicode");
return content;
} catch (UnsupportedEncodingException e) {
logger.error("The OS does not support " + encoding);
e.printStackTrace();
return null;
}
写入注册表文件:
try {
FileOutputStream writer = new FileOutputStream(filePath);
BufferedWriter bw = new BufferedWriter(
new OutputStreamWriter(writer, "Unicode"));
bw.write(regContent);
bw.close();
writer.close();
return true;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}