Java属性对象到String

前端之家收集整理的这篇文章主要介绍了Java属性对象到String前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 Java属性对象,我从一个内存中的字符串加载,这是先前从实际的.properties文件加载到内存,如下所示:
this.propertyFilesCache.put(file,FileUtils.fileToString(propFile));

util fileToString实际上从文件中读取文本,其余的代码将其存储在名为propertyFilesCache的HashMap中.之后,我将文本文本从HashMap中读取为String,并将其重新加载到Java Properties对象中,如下所示:

String propFileStr = this.propertyFilesCache.get(fileName);
Properties tempProps = new Properties();
try {
    tempProps.load(new ByteArrayInputStream(propFileStr.getBytes()));
} catch (Exception e) {
    log.debug(e.getMessage());
}
tempProps.setProperty(prop,propVal);

在这一点上,我已经在我的内存属性文件中替换了我的属性,我想从Properties对象获取文本,就像我正在读取像上面提到的File对象一样.有没有一个简单的方法来做到这一点,或者我将不得不迭代属性并手动创建String?

解决方法

public static String getPropertyAsString(Properties prop) {    
  StringWriter writer = new StringWriter();
  prop.list(new PrintWriter(writer));
  return writer.getBuffer().toString();
}
原文链接:https://www.f2er.com/java/124847.html

猜你在找的Java相关文章