本文整理汇总了Java中org.apache.commons.lang3.StringUtils.indexOfIgnoreCase方法的典型用法代码示例。如果您正苦于以下问题:Java StringUtils.indexOfIgnoreCase方法的具体用法?Java StringUtils.indexOfIgnoreCase怎么用?Java StringUtils.indexOfIgnoreCase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.lang3.StringUtils
的用法示例。
在下文中一共展示了StringUtils.indexOfIgnoreCase方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getResponseFileName
import org.apache.commons.lang3.StringUtils; //导入方法依赖的package包/类
/**
* 从响应消息的Content-Disposition头中获得文件名。
*
* @param headers
* @return 如果不是文件则返回null
*/
private static String getResponseFileName(Header[] headers) {
String filename = null;
if (headers == null) {
return null;
}
for (Header header : headers) {
if (StringUtils.equalsIgnoreCase(header.getName(), "Content-Disposition")) {
String value = header.getValue();
String key = "filename=";
int keyLength = key.length();
int position = StringUtils.indexOfIgnoreCase(header.getValue(), key);
if (position > -1) {
filename = StringUtils.substring(value, position + keyLength);
}
break;
}
}
return filename;
}
示例2: extractUsername
import org.apache.commons.lang3.StringUtils; //导入方法依赖的package包/类
/**
* Extracts the username from the specified DN. If the username cannot be extracted because the CN is in an unrecognized format, the entire CN is returned. If the CN cannot be extracted because
* the DN is in an unrecognized format, the entire DN is returned.
*
* @param dn the dn to extract the username from
* @return the exatracted username
*/
public static String extractUsername(String dn) {
String username = dn;
// ensure the dn is specified
if (StringUtils.isNotBlank(dn)) {
// determine the separate
final String separator = StringUtils.indexOfIgnoreCase(dn, "/cn=") > 0 ? "/" : ",";
// attempt to locate the cd
final String cnPattern = "cn=";
final int cnIndex = StringUtils.indexOfIgnoreCase(dn, cnPattern);
if (cnIndex >= 0) {
int separatorIndex = StringUtils.indexOf(dn, separator, cnIndex);
if (separatorIndex > 0) {
username = StringUtils.substring(dn, cnIndex + cnPattern.length(), separatorIndex);
} else {
username = StringUtils.substring(dn, cnIndex + cnPattern.length());
}
}
}
return username;
}
示例3: handleIndex
import org.apache.commons.lang3.StringUtils; //导入方法依赖的package包/类
@Override
protected int handleIndex(CharSequence str, CharSequence searchStr, int startPos) {
return StringUtils.indexOfIgnoreCase(str, searchStr, startPos);
}