资源简介
fastdfs_client.zip

代码片段和文件信息
package org.csource.common;
import java.io.IOException;
/**
* Freeware from:
* Roedy Green
* Canadian Mind Products
* #327 - 964 Heywood Avenue
* Victoria BC Canada V8V 2Y5
* tel:(250) 361-9093
* mailto:roedy@mindprod.com
*/
/**
* Encode arbitrary binary into printable ASCII using base64 encoding.
* very loosely based on the base64 Reader by
* Dr. Mark Thornton
* Optrak Distribution Software Ltd.
* http://www.optrak.co.uk
* and Kevin Kelley‘s http://www.ruralnet.net/~kelley/java/base64.java
*
* base64 is a way of encoding 8-bit characters using only ASCII printable
* characters similar to UUENCODE. UUENCODE includes a filename where base64 does not.
* The spec is described in RFC 2045. base64 is a scheme where
* 3 bytes are concatenated then split to form 4 groups of 6-bits each; and
* each 6-bits gets translated to an encoded printable ASCII character via a
* table lookup. An encoded string is therefore longer than the original by
* about 1/3. The “=“ character is used to pad the end. base64 is used
* among other things to encode the user:password string in an
* Authorization: header for HTTP. Don‘t confuse base64 with
* x-www-form-urlencoded which is handled by
* Java.net.URLEncoder.encode/decode
* If you don‘t like this code there is another implementation at http://www.ruffboy.com/download.htm
* Sun has an undocumented method called sun.misc.base64Encoder.encode.
* You could use hex simpler to code but not as compact.
*
* If you wanted to encode a giant file you could do it in large chunks that
* are even multiples of 3 bytes except for the last chunk and append the outputs.
*
* To encode a string rather than binary data java.net.URLEncoder may be better. See
* printable characters in the Java glossary for a discussion of the differences.
*
* version 1.4 2002 February 15 -- correct bugs with uneven line lengths
* allow you to configure line separator.
* now need base64 object and instance methods.
* new mailing address.
* version 1.3 2000 September 12 -- fix problems with estimating output length in encode
* version 1.2 2000 September 09 -- now handles decode as well.
* version 1.1 1999 December 04 -- more symmetrical encoding algorithm.
* more accurate StringBuffer allocation size.
* version 1.0 1999 December 03 -- posted in comp.lang.java.programmer.
* Futures Streams or files.
*/
public class base64
{
/**
* how we separate lines e.g. \n \r\n \r etc.
*/
private String lineSeparator = System.getProperty( “line.separator“ );
/**
* max chars per line excluding lineSeparator. A multiple of 4.
*/
private int lineLength = 72;
private char[] valueToChar = new char[64];
/**
* binary value encoded by a given letter of the alphabet 0..
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-07-22 16:56 fastdfs_client\
文件 1431 2017-07-22 16:56 fastdfs_client\.classpath
文件 566 2017-07-22 16:56 fastdfs_client\.project
目录 0 2017-07-22 16:56 fastdfs_client\.settings\
文件 243 2017-07-22 16:56 fastdfs_client\.settings\org.eclipse.jdt.core.prefs
文件 90 2017-07-22 16:56 fastdfs_client\.settings\org.eclipse.m2e.core.prefs
文件 361 2017-07-22 16:56 fastdfs_client\pom.xm
目录 0 2017-07-22 16:56 fastdfs_client\src\
目录 0 2017-07-22 16:56 fastdfs_client\src\main\
目录 0 2017-07-22 16:56 fastdfs_client\src\main\java\
目录 0 2017-07-22 16:56 fastdfs_client\src\main\java\org\
目录 0 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\
目录 0 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\common\
文件 16789 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\common\ba
文件 3721 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\common\IniFileReader.java
文件 502 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\common\MyException.java
文件 972 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\common\NameValuePair.java
目录 0 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\fastdfs\
文件 5122 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\fastdfs\ClientGlobal.java
文件 784 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\DownloadCallback.java
文件 1039 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\DownloadStream.java
文件 2649 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\FileInfo.java
文件 17377 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\ProtoCommon.java
文件 1135 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\ProtoStructDecoder.java
文件 1273 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\ServerInfo.java
文件 65791 2017-07-22 16:57 fastdfs_client\src\main\java\org\csource\fastdfs\StorageClient.java
文件 25319 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\StorageClient1.java
文件 1532 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\StorageServer.java
文件 1947 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\Structba
文件 7466 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\StructGroupStat.java
文件 34331 2017-07-22 16:56 fastdfs_client\src\main\java\org\csource\fastdfs\StructStorageStat.java
............此处省略82个文件信息
相关资源
- PID_AutoTune_v0.rar
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
评论
共有 条评论