本文整理汇总了Java中org.apache.commons.lang.StringUtils.replaceChars方法的典型用法代码示例。如果您正苦于以下问题:Java StringUtils.replaceChars方法的具体用法?Java StringUtils.replaceChars怎么用?Java StringUtils.replaceChars使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.lang.StringUtils
的用法示例。
在下文中一共展示了StringUtils.replaceChars方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: colorzine
import org.apache.commons.lang.StringUtils; //导入方法依赖的package包/类
@SuppressWarnings("all")
public static Object colorzine(Object o) {
if (o instanceof String) {
return StringUtils.replaceChars((String) o, '&', '§');
}
if (o instanceof List) {
List list = (List) o;
for (Object obj : list) {
if (obj instanceof String) {
list.set(list.indexOf(obj), StringUtils.replaceChars((String) obj, '&', '§'));
}
}
return list;
}
return o;
}
示例2: loadDropDownItems
import org.apache.commons.lang.StringUtils; //导入方法依赖的package包/类
private void loadDropDownItems() {
Properties properties=new Properties();
InputStream inStream;
try {
inStream = ExpressionEditorUtil.INSTANCE.getPropertyFilePath(PathConstant.OPERATOR_CONFIG_FILE);
properties.load(inStream);
for(Object key:properties.keySet()){
if(key!=null && properties.get(key)!=null){
String operatorName=StringUtils.replaceChars((String) key, '_', SWT.SPACE);
this.add(operatorName);
this.setData(operatorName, (String)properties.get(key));
}
}
} catch (IOException | RuntimeException exception ) {
LOGGER.error("Exception occurred while loading property file.",exception);
StringBuffer buffer=new StringBuffer();
buffer.append(Messages.OPERATOR_FILE_NOT_FOUND);
new CustomMessageBox(SWT.ICON_WARNING,buffer.toString() , Messages.WARNING).open();
}
}