Base 64
摘要:
import java.io.*;/** * Routines for converting between Strings of base64-encoded data and arrays of * binary data. * * @author Brian Wellington */public class base64 { private static final String Base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; private base64() 阅读全文
posted @ 2011-06-13 20:02 陆晓峰 阅读(385) 评论(0) 推荐(0)