本文整理汇总了Java中org.apache.commons.codec.binary.Base64.encodeToString方法的典型用法代码示例。如果您正苦于以下问题:Java Base64.encodeToString方法的具体用法?Java Base64.encodeToString怎么用?Java Base64.encodeToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.commons.codec.binary.Base64
的用法示例。
在下文中一共展示了Base64.encodeToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: encodeWritable
import org.apache.commons.codec.binary.Base64; //导入方法依赖的package包/类
/**
* Generate a string with the url-quoted base64 encoded serialized form
* of the Writable.
* @param obj the object to serialize
* @return the encoded string
* @throws IOException
*/
private static String encodeWritable(Writable obj) throws IOException {
DataOutputBuffer buf = new DataOutputBuffer();
obj.write(buf);
Base64 encoder = new Base64(0, null, true);
byte[] raw = new byte[buf.getLength()];
System.arraycopy(buf.getData(), 0, raw, 0, buf.getLength());
return encoder.encodeToString(raw);
}
示例2: base64Encoded
import org.apache.commons.codec.binary.Base64; //导入方法依赖的package包/类
private String base64Encoded(String json) throws JsonProcessingException {
byte[] data = json.getBytes();
Base64 encoder = new Base64(0, null, true);
return encoder.encodeToString(data);
}