All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.core.io.NullOutputStream Maven / Gradle / Ivy

Go to download

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

There is a newer version: 5.8.34
Show newest version
package cn.hutool.core.io;

import java.io.IOException;
import java.io.OutputStream;

/**
 * 此OutputStream写出数据到/dev/null,即忽略所有数据
* 来自 Apache Commons io * * @author looly * @since 4.0.6 */ public class NullOutputStream extends OutputStream { /** * 单例 */ public static final NullOutputStream NULL_OUTPUT_STREAM = new NullOutputStream(); /** * 什么也不做,写出到/dev/null. * * @param b 写出的数据 * @param off 开始位置 * @param len 长度 */ @Override public void write(byte[] b, int off, int len) { // to /dev/null } /** * 什么也不做,写出到 /dev/null. * * @param b 写出的数据 */ @Override public void write(int b) { // to /dev/null } /** * 什么也不做,写出到 /dev/null. * * @param b 写出的数据 * @throws IOException 不抛出 */ @Override public void write(byte[] b) throws IOException { // to /dev/null } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy