com.dahuatech.hutool.core.io.NullOutputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.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
}
}