- 浏览: 205939 次
- 性别:
- 来自: 北京
最新评论
-
guoranaccp:
太帅了
Base64Encoder源码 -
xsw331:
...
javacsv导出 -
rock1103:
不错啊,中文也可以
javacsv导出 -
lyfi:
...
Base64Encoder源码 -
chengpeinishi:
亲们,资源可用哦。
javacsv导出
import java.io.*; /******************************************************************************* * A class to decode Base64 streams and strings. See RFC 1521 section 5.2 for * details of the Base64 algorithm. * <p> * This class can be used for decoding strings: <blockquote> * * <pre> * String encoded = "d2VibWFzdGVyOnRyeTJndWVTUw"; * String decoded = Base64Decoder.decode(encoded); * </pre> * * </blockquote> or for decoding streams: <blockquote> * * <pre> * InputStream in = new Base64Decoder(System.in); * </pre> * * </blockquote> * * @author <b>Jason Hunter</b>, Copyright © 2000 * @version 1.1, 2002/11/01, added decodeToBytes() to better handle binary data * (thanks to Sean Graham) * @version 1.0, 2000/06/11 */ public class Base64Decoder extends FilterInputStream { private static final char[] chars = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' }; // A mapping between char values and six-bit integers private static final int[] ints = new int[128]; static { for (int i = 0; i < 64; i++) { ints[chars[i]] = i; } } private int charCount; private int carryOver; /*************************************************************************** * Constructs a new Base64 decoder that reads input from the given * InputStream. * * @param in * the input stream */ public Base64Decoder(InputStream in) { super(in); } /*************************************************************************** * Returns the next decoded character from the stream, or -1 if end of * stream was reached. * * @return the decoded character, or -1 if the end of the input stream is * reached * @exception IOException * if an I/O error occurs */ public int read() throws IOException { // Read the next non-whitespace character int x; do { x = in.read(); if (x == -1) { return -1; } } while (Character.isWhitespace((char) x)); charCount++; // The '=' sign is just padding if (x == '=') { return -1; // effective end of stream } // Convert from raw form to 6-bit form x = ints[x]; // Calculate which character we're decoding now int mode = (charCount - 1) % 4; // First char save all six bits, go for another if (mode == 0) { carryOver = x & 63; return read(); } // Second char use previous six bits and first two new bits, // save last four bits else if (mode == 1) { int decoded = ((carryOver << 2) + (x >> 4)) & 255; carryOver = x & 15; return decoded; } // Third char use previous four bits and first four new bits, // save last two bits else if (mode == 2) { int decoded = ((carryOver << 4) + (x >> 2)) & 255; carryOver = x & 3; return decoded; } // Fourth char use previous two bits and all six new bits else if (mode == 3) { int decoded = ((carryOver << 6) + x) & 255; return decoded; } return -1; // can't actually reach this line } /*************************************************************************** * Reads decoded data into an array of bytes and returns the actual number * of bytes read, or -1 if end of stream was reached. * * @param buf * the buffer into which the data is read * @param off * the start offset of the data * @param len * the maximum number of bytes to read * @return the actual number of bytes read, or -1 if the end of the input * stream is reached * @exception IOException * if an I/O error occurs */ public int read(byte[] buf, int off, int len) throws IOException { if (buf.length < (len + off - 1)) { throw new IOException("The input buffer is too small: " + len + " bytes requested starting at offset " + off + " while the buffer " + " is only " + buf.length + " bytes long."); } // This could of course be optimized int i; for (i = 0; i < len; i++) { int x = read(); if (x == -1 && i == 0) { // an immediate -1 returns -1 return -1; } else if (x == -1) { // a later -1 returns the chars read so far break; } buf[off + i] = (byte) x; } return i; } /*************************************************************************** * Returns the decoded form of the given encoded string, as a String. Note * that not all binary data can be represented as a String, so this method * should only be used for encoded String data. Use decodeToBytes() * otherwise. * * @param encoded * the string to decode * @return the decoded form of the encoded string */ public static String decode(String encoded) { return new String(decodeToBytes(encoded)); } public static byte[] decodeReturnByte(String encodedStr) { return decodeToBytes(encodedStr); } /*************************************************************************** * Returns the decoded form of the given encoded string, as bytes. * * @param encoded * the string to decode * @return the decoded form of the encoded string */ public static byte[] decodeToBytes(String encoded) { byte[] bytes = null; try { bytes = encoded.getBytes("8859_1"); } catch (UnsupportedEncodingException ignored) { } Base64Decoder in = new Base64Decoder(new ByteArrayInputStream(bytes)); ByteArrayOutputStream out = new ByteArrayOutputStream( (int) (bytes.length * 0.67)); try { byte[] buf = new byte[4 * 1024]; // 4K buffer int bytesRead; while ((bytesRead = in.read(buf)) != -1) { out.write(buf, 0, bytesRead); } out.close(); return out.toByteArray(); } catch (IOException ignored) { return null; } } public static void main(String[] args) throws Exception { if (args.length != 1) { System.err.println("Usage: java Base64Decoder fileToDecode"); return; } Base64Decoder decoder = null; try { decoder = new Base64Decoder(new BufferedInputStream(new FileInputStream(args[0]))); byte[] buf = new byte[4 * 1024]; // 4K buffer int bytesRead; while ((bytesRead = decoder.read(buf)) != -1) { System.out.write(buf, 0, bytesRead); } } finally { if (decoder != null) decoder.close(); } } }
发表评论
-
eclipse axis2 插件 安装 link方式
2012-05-15 16:59 1876插件下载地址: http://www.apache.o ... -
JRuby初始安装与使用
2012-03-06 10:28 1184JRUBY的下载:http://dist.codehaus.o ... -
input type=file 标签禁止让用户手动输入
2012-02-21 14:08 1019<input name="filePat ... -
通过Mysql语句得到mysql安装路径
2012-01-07 13:07 9301、通过Mysql语句得到mysql安装路径: sel ... -
Apache Ant 环境搭建
2012-01-07 13:05 1122Apache Ant 下载地址:http://ant.apac ... -
Base64Encoder源码
2011-11-09 08:56 6241import java.io.*; /****** ... -
JS和Java验证IP合法
2011-11-01 17:32 2392/* JS验证IP是否合法 */ function i ... -
修改Mysql启动路径
2011-11-01 17:31 1917修改Mysql启动路径 首先在服务中停止MySq ... -
Mysql提速
2011-09-21 16:55 1445因数据较大,导致执行速度慢,同事帮我优化一下,果然见效。 ... -
更换SVN用户
2011-09-21 16:25 784修改eclipse中的svn用户 1. 查看你的 ... -
Mac下JDK路径
2011-08-26 22:49 1239/System/Library/Java/JavaVirtua ... -
web.xml中load-on-startup标签
2011-08-11 10:54 839在servlet的配置当中,<load-on-st ... -
同时启动多个Tomcat服务器
2011-08-09 09:17 906所用Tomcat服务器都为zip版,非安装版。以两个为例:安装 ... -
String StringBuffer StringBuilder区别
2011-07-30 11:24 797String 字符串常量StringB ... -
java中访问修饰符public,protected,private,friendly
2011-07-30 11:21 10441)public: 表明该数据成员、函数都是对多有用户开发 ... -
存储过程的优点
2011-07-26 01:38 1031在性能方面,存储过程的优点: 1、预编译,存储过程预先编译好放 ... -
数据库视图的优点与缺点
2011-07-26 01:34 1789在程序设计的时候必须先了解视图的优缺点,这样可以扬长避短,视图 ... -
eclipse配置tomcat7
2011-05-31 12:32 1037图解如下: 修改服务器启动所需的jar包 即to ... -
Linux下Java环境的JDK+Tomcat+Mysql安装和配置
2011-05-26 13:29 1029CentOS5.4下安装JDK 1、 ... -
tomcat配置管理用户名密码
2011-05-26 11:01 1632tomcat默认是将用户是注释的 配置文件在根目 ...
相关推荐
`Base64.Encoder`接口代表Base64编码器,而`Base64.Decoder`接口代表Base64解码器。你可以通过`Base64.getEncoder()`和`Base64.getDecoder()`获取默认的编码器和解码器实例。例如: ```java import java.util.Base...
sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及Java源代码 sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及Java源代码 sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及...
在Java中,`BASE64Encoder`和`BASE64Decoder`是两个核心类,分别用于对数据进行BASE64编码和解码。 `BASE64Encoder`类: 这个类在Java SDK中位于`javax.crypto`包下,主要负责将字节序列(byte array)转换为BASE...
在Java编程语言中,`sun.misc.BASE64Encoder`和`BASE64Decoder`是用于进行Base64编码和解码的内部类,它们属于`sun.misc`包,这是一个非公开(非标准)的Java库。`sun.misc`包中的类主要用于JVM内部使用,因此在官方...
解决android无法使用sun.misc.CharacterDecoder,添加了rt.jar也不行。...BASE64Decoder.java BASE64Encoder.java CEFormatException.java CEStreamExhausted.java CharacterDecoder.java CharacterEncoder.java
然而,有时我们可能会遇到访问特定类或库的限制,比如标题中提到的`BASE64Encoder`和`BASE64Decoder`。这两个类是Java的标准库中的工具类,用于进行Base64编码和解码。但在某些情况下,Eclipse可能无法直接使用这些...
在Java编程语言中,`sun.misc.BASE64Encoder` 和 `sun.misc.BASE64Decoder` 是两个用于Base64编码和解码的内部类,它们位于`sun.misc`包下。Base64是一种用于在网络上传输二进制数据的文本编码方式,它将任意的字节...
然而,描述中提到的是一个名为`BASE64Encoder.jar`的文件,这可能是一个早期的Java库,用于处理Base64编码和解码,可能在Java 8之前使用,因为它包含了`BASE64Encoder`和`BASE64Decoder`这两个类。 `BASE64Encoder`...
这个"BASE64加密源码完整JAR包"很可能包含了一个或者多个Java类,提供了方便的BASE64编码接口,便于开发者集成到他们的项目中。 在Java中,`java.util.Base64`类库提供了以下主要方法: 1. `Encoder....
function Base64ToImage(const base64:string;AImage:TImage):Boolean; function Base64ToImageFile(const base64:string;AImagefile:string):Boolean; function CheckImgTypeBase64(abase64:string):string;
这个类提供了`Decoder`和`Encoder`接口,其中`Base64.Decoder`用于解码BASE64编码的数据,而`Base64.Encoder`用于编码数据。 对于数据库账号的加密,我们首先需要获取账号信息,然后使用一个密钥(key)进行加密。...
在你提到的压缩包"BASE64All源码与jar包"中,可能包含了一个实现了BASE64编码和解码功能的第三方库,以及相关的源代码。这个库可能提供了更高级的功能,比如批量处理、支持流式操作或者错误处理。使用这样的库,...
Base64.Decoder decoder = Base64.getDecoder(); ``` 2. **对字符串进行Base64编码**: ```java String originalStr = "Hello, World!"; byte[] encodedBytes = encoder.encode(originalStr.getBytes...
`Encoder`和`Decoder`用于标准的Base64编码,而`UrlSafeEncoder/Decoder`则用于URL和文件名安全的Base64编码,它将"+"替换为"-","/"替换为"_"。 1. 使用`java.util.Base64`编码: ```java import java.util.Base64...
对应地,使用`java.util.Base64.Decoder`接口的`decode()`方法可以将Base64字符串解码回原始的字节数组。例如: ```java String encodedString = "SGVsbG8sIFdvcmxkIQ=="; byte[] decodedBytes = Base64....
在Java中,`sun.misc.BASE64Encoder`是早期用于实现BASE64编码的一个类,但请注意,这个类并不是Java标准API的一部分,而是属于Sun Microsystems提供的非公开、非标准的类库,因此在新的Java版本中,建议使用`java....
3. **使用`sun.misc.BASE64Decoder`类**:在Java 8之前的版本中,Sun JDK提供了一个内部类`sun.misc.BASE64Decoder`,可以用于Base64解码。但是,这个类并不是公开API的一部分,因此使用它可能会导致不兼容性问题。...
3. `Base64Encoder`和`Base64Decoder`类:可能提供了更高级的功能,如流式编码和解码,允许用户分批处理大文件或流数据。 在编码过程中,如果原始数据不是3的倍数,会在末尾添加0填充位,以达到24位的整数倍。编码...