| | |
| | | if(data == null){ |
| | | return null; |
| | | } |
| | | if(!isHexStrValid(data)){ |
| | | return data; |
| | | } |
| | | if(StringUtils.isEmpty(encoding)){ |
| | | encoding = "UTF-8"; |
| | | } |
| | |
| | | if(data == null){ |
| | | return null; |
| | | } |
| | | if(!isHexStrValid(data)){ |
| | | return data; |
| | | } |
| | | |
| | | if (StringUtils.isEmpty(encoding)) { |
| | | encoding = "UTF-8"; |
| | | } |
| | |
| | | * @return true or false |
| | | */ |
| | | public static boolean isHexStrValid(String str) { |
| | | |
| | | if(str == null){ |
| | | return false; |
| | | } |
| | | //是否32位倍数 |
| | | if(str.length()%32 != 0){ |
| | | return false; |
| | | } |
| | | String pattern = "^[0-9A-F]+$"; |
| | | return Pattern.compile(pattern).matcher(str).matches(); |
| | | } |