本文整理匯總了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);
}