本文整理匯總了Java中net.sourceforge.subsonic.util.StringUtil.utf8HexDecode方法的典型用法代碼示例。如果您正苦於以下問題:Java StringUtil.utf8HexDecode方法的具體用法?Java StringUtil.utf8HexDecode怎麽用?Java StringUtil.utf8HexDecode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.sourceforge.subsonic.util.StringUtil
的用法示例。
在下文中一共展示了StringUtil.utf8HexDecode方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: decode
import net.sourceforge.subsonic.util.StringUtil; //導入方法依賴的package包/類
private String[] decode(String[] values) {
if (values == null) {
return null;
}
String[] result = new String[values.length];
for (int i = 0; i < values.length; i++) {
try {
result[i] = StringUtil.utf8HexDecode(values[i]);
} catch (Exception x) {
LOG.error("Failed to decode parameter value '" + values[i] + "'");
result[i] = values[i];
}
}
return result;
}
示例2: decrypt
import net.sourceforge.subsonic.util.StringUtil; //導入方法依賴的package包/類
public static String decrypt(String s) {
if (s == null) {
return null;
}
if (!s.startsWith("enc:")) {
return s;
}
try {
return StringUtil.utf8HexDecode(s.substring(4));
} catch (Exception e) {
return s;
}
}
示例3: mapId
import net.sourceforge.subsonic.util.StringUtil; //導入方法依賴的package包/類
private String mapId(String id) {
if (id == null || id.startsWith(CoverArtController.ALBUM_COVERART_PREFIX) ||
id.startsWith(CoverArtController.ARTIST_COVERART_PREFIX) || StringUtils.isNumeric(id)) {
return id;
}
try {
String path = StringUtil.utf8HexDecode(id);
MediaFile mediaFile = mediaFileService.getMediaFile(path);
return String.valueOf(mediaFile.getId());
} catch (Exception x) {
return id;
}
}
示例4: decrypt
import net.sourceforge.subsonic.util.StringUtil; //導入方法依賴的package包/類
private static String decrypt(String s) {
if (s == null) {
return null;
}
if (!s.startsWith("enc:")) {
return s;
}
try {
return StringUtil.utf8HexDecode(s.substring(4));
} catch (Exception e) {
return s;
}
}
示例5: getLdapManagerPassword
import net.sourceforge.subsonic.util.StringUtil; //導入方法依賴的package包/類
public String getLdapManagerPassword() {
String s = properties.getProperty(KEY_LDAP_MANAGER_PASSWORD, DEFAULT_LDAP_MANAGER_PASSWORD);
try {
return StringUtil.utf8HexDecode(s);
} catch (Exception x) {
LOG.warn("Failed to decode LDAP manager password.", x);
return s;
}
}