本文整理汇总了Java中org.apache.commons.codec.binary.Base32.isInAlphabet方法的典型用法代码示例。如果您正苦于以下问题:Java Base32.isInAlphabet方法的具体用法?Java Base32.isInAlphabet怎么用?Java Base32.isInAlphabet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.codec.binary.Base32
的用法示例。
在下文中一共展示了Base32.isInAlphabet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBytes
import org.apache.commons.codec.binary.Base32; //导入方法依赖的package包/类
/**
* Converts a string to a byte array.
*
* @param base32String The input Base32 string.
* @return The output byte array.
*/
public static byte[] getBytes(final String base32String) {
final Base32 codec = new Base32();
final byte[] encodedBytes = StringEncoder.getBytes(base32String);
if (!codec.isInAlphabet(encodedBytes, true)) {
throw new IllegalArgumentException("malformed base32 string passed to getBytes");
}
return codec.decode(encodedBytes);
}
示例2: base32ToBytes
import org.apache.commons.codec.binary.Base32; //导入方法依赖的package包/类
public static byte[] base32ToBytes(String input) {
Base32 b = new Base32();
if (!b.isInAlphabet(input)) {
throw new IllegalArgumentException("The provided input is not valid base32.");
}
return b.decode(input);
}