本文整理了Java中org.apache.commons.codec.binary.Base64.isInAlphabet()
方法的一些代码示例,展示了Base64.isInAlphabet()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Base64.isInAlphabet()
方法的具体详情如下:
包路径:org.apache.commons.codec.binary.Base64
类名称:Base64
方法名:isInAlphabet
[英]Returns whether or not the octet
is in the Base64 alphabet.
[中]返回octet
是否在Base64字母表中。
代码示例来源:origin: NemProject/nem.core
/**
* Converts a string to a byte array.
*
* @param base64String The input Base64 string.
* @return The output byte array.
*/
public static byte[] getBytes(final String base64String) {
final Base64 codec = new Base64();
final byte[] encodedBytes = StringEncoder.getBytes(base64String);
if (!codec.isInAlphabet(encodedBytes, true)) {
throw new IllegalArgumentException("malformed base64 string passed to getBytes");
}
return codec.decode(encodedBytes);
}
代码示例来源:origin: nemtech/nem2-sdk-java
/**
* Converts a string to a byte array.
*
* @param base64String The input Base64 string.
* @return The output byte array.
*/
public static byte[] getBytes(final String base64String) {
final Base64 codec = new Base64();
final byte[] encodedBytes = StringEncoder.getBytes(base64String);
if (!codec.isInAlphabet(encodedBytes, true)) {
throw new IllegalArgumentException("malformed base64 string passed to getBytes");
}
return codec.decode(encodedBytes);
}
内容来源于网络,如有侵权,请联系作者删除!