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


Java StringUtil.utf8HexDecode方法代碼示例

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

示例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;
    }
}
 
開發者ID:sindremehus,項目名稱:subsonic,代碼行數:14,代碼來源:RESTRequestParameterProcessingFilter.java

示例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;
    }
}
 
開發者ID:sindremehus,項目名稱:subsonic,代碼行數:15,代碼來源:RESTController.java

示例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;
    }
}
 
開發者ID:sindremehus,項目名稱:subsonic,代碼行數:14,代碼來源:UserDao.java

示例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;
    }
}
 
開發者ID:sindremehus,項目名稱:subsonic,代碼行數:10,代碼來源:SettingsService.java


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