Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Apache Commons Codec Source Code
Apache Commons Codec library
provides implementations of common encoders and decoders such as Base64, Hex,
Phonetic and URLs.
Apache Commons Codec Source Code files are provided in both binary packge (commons-codec-3.15-bin.zip) and source package (commons-codec-3.15-src.zip). You can download them at Apache Commons Codec Website.
Apache Commons Codec Source Code has no dependencies. You can compile it to generate your own version of Apache Commons Codec JAR file.
The source code of Apache Commons Codec 1.15 is provided below:
✍: FYIcenter
⏎ org/apache/commons/codec/binary/BaseNCodecOutputStream.java
/* * 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 under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.codec.binary; import static org.apache.commons.codec.binary.BaseNCodec.EOF; import java.io.FilterOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.Objects; import org.apache.commons.codec.binary.BaseNCodec.Context; /** * Abstract superclass for Base-N output streams. * <p> * To write the EOF marker without closing the stream, call {@link #eof()} or use an <a * href="https://commons.apache.org/proper/commons-io/">Apache Commons IO</a> <a href= * "https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/output/CloseShieldOutputStream.html" * >CloseShieldOutputStream</a>. * </p> * * @since 1.5 */ public class BaseNCodecOutputStream extends FilterOutputStream { private final boolean doEncode; private final BaseNCodec baseNCodec; private final byte[] singleByte = new byte[1]; private final Context context = new Context(); /** * TODO should this be protected? * * @param output the underlying output or null. * @param basedCodec a BaseNCodec. * @param doEncode true to encode, false to decode, TODO should be an enum? */ public BaseNCodecOutputStream(final OutputStream output, final BaseNCodec basedCodec, final boolean doEncode) { super(output); this.baseNCodec = basedCodec; this.doEncode = doEncode; } /** * Closes this output stream and releases any system resources associated with the stream. * <p> * To write the EOF marker without closing the stream, call {@link #eof()} or use an * <a href="https://commons.apache.org/proper/commons-io/">Apache Commons IO</a> <a href= * "https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/output/CloseShieldOutputStream.html" * >CloseShieldOutputStream</a>. * </p> * * @throws IOException * if an I/O error occurs. */ @Override public void close() throws IOException { eof(); flush(); out.close(); } /** * Writes EOF. * * @throws IOException * if an I/O error occurs. * @since 1.11 */ public void eof() throws IOException { // Notify encoder of EOF (-1). if (doEncode) { baseNCodec.encode(singleByte, 0, EOF, context); } else { baseNCodec.decode(singleByte, 0, EOF, context); } } /** * Flushes this output stream and forces any buffered output bytes to be written out to the stream. * * @throws IOException * if an I/O error occurs. */ @Override public void flush() throws IOException { flush(true); } /** * Flushes this output stream and forces any buffered output bytes to be written out to the stream. If propagate is * true, the wrapped stream will also be flushed. * * @param propagate * boolean flag to indicate whether the wrapped OutputStream should also be flushed. * @throws IOException * if an I/O error occurs. */ private void flush(final boolean propagate) throws IOException { final int avail = baseNCodec.available(context); if (avail > 0) { final byte[] buf = new byte[avail]; final int c = baseNCodec.readResults(buf, 0, avail, context); if (c > 0) { out.write(buf, 0, c); } } if (propagate) { out.flush(); } } /** * Returns true if decoding behavior is strict. Decoding will raise an * {@link IllegalArgumentException} if trailing bits are not part of a valid encoding. * * <p>The default is false for lenient encoding. Decoding will compose trailing bits * into 8-bit bytes and discard the remainder. * * @return true if using strict decoding * @since 1.15 */ public boolean isStrictDecoding() { return baseNCodec.isStrictDecoding(); } /** * Writes {@code len} bytes from the specified {@code b} array starting at {@code offset} to this * output stream. * * @param array * source byte array * @param offset * where to start reading the bytes * @param len * maximum number of bytes to write * * @throws IOException * if an I/O error occurs. * @throws NullPointerException * if the byte array parameter is null * @throws IndexOutOfBoundsException * if offset, len or buffer size are invalid */ @Override public void write(final byte array[], final int offset, final int len) throws IOException { Objects.requireNonNull(array, "array"); if (offset < 0 || len < 0) { throw new IndexOutOfBoundsException(); } else if (offset > array.length || offset + len > array.length) { throw new IndexOutOfBoundsException(); } else if (len > 0) { if (doEncode) { baseNCodec.encode(array, offset, len, context); } else { baseNCodec.decode(array, offset, len, context); } flush(false); } } /** * Writes the specified {@code byte} to this output stream. * * @param i * source byte * @throws IOException * if an I/O error occurs. */ @Override public void write(final int i) throws IOException { singleByte[0] = (byte) i; write(singleByte, 0, 1); } }
⏎ org/apache/commons/codec/binary/BaseNCodecOutputStream.java
Or download all of them as a single archive file:
File name: commons-codec-1.15-sources.jar File size: 364441 bytes Release date: 2020-09-01 Download
⇒ Download and Install commons-codec-1.15-bin.zip
2020-06-28, 116228👍, 1💬
Popular Posts:
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
How to download and install iText7-Core-7.1.4.zip? iText7-Core-7.1.4.zip is the binary package of iT...