當前位置: 首頁>>代碼示例>>Java>>正文


Java StringUtils.replaceChars方法代碼示例

本文整理匯總了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;
}
 
開發者ID:GelandiAssociation,項目名稱:EscapeLag,代碼行數:17,代碼來源:AzureAPI.java

示例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();
	}
}
 
開發者ID:capitalone,項目名稱:Hydrograph,代碼行數:21,代碼來源:OperatorToolCombo.java


注:本文中的org.apache.commons.lang.StringUtils.replaceChars方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。