本文整理匯總了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();
}
}