首先我们要明白 Codec 是什么含义.它是 Coder + decoder = Codec,也就是编码器解码器.即是编码器,也是解码器. 官网地址:http://commons.apache.org/proper/commons-codec/ Apache Commons Codec (TM) software provides implementations of common encoders and decoders such as Base64, Hex, Phonetic and U…
下载地址:http://commons.apache.org/proper/commons-codec/download_codec.cgi import org.apache.commons.codec.binary.Base64; /** * Created by yster@foxmail.com * 2018年4月9日 下午10:17:09 */ public class JdkBase64 { public static void main(String[] args) { Strin…
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You u…
觉得很不错,就转载了, 作者: Paul Lin 首先贴一段Apache commons IO官网上的介绍,来对这个著名的开源包有一个基本的了解:Commons IO is a library of utilities to assist with developing IO functionality. There are four main areas included:●Utility classes - with static methods to perform common task…