void write(byte[] b, int off, int len)
优质
小牛编辑
137浏览
2023-12-01
描述 (Description)
java.util.zip.CheckedOutputStream.write(byte[] b, int off, int len)方法写入一个字节数组。 将阻塞直到实际写入字节。
声明 (Declaration)
以下是java.util.zip.CheckedOutputStream.write(byte[] b, int off, int len)方法的声明。
public void write(byte[] b, int off, int len)
throws IOException
参数 (Parameters)
b - 要写入的数据的缓冲区。
off - 目标数组中的起始偏移量b。
len - 要写入的字节数。
异常 (Exceptions)
IOException - 如果发生I/O错误。
先决条件
在D:》 test 》目录中创建一个文件Hello.txt,其中包含以下内容。
This is an example.
例子 (Example)
以下示例显示了java.util.zip.CheckedOutputStream.write(byte [] b,int off,int len)方法的用法。
package cn.xnip;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.Adler32;
import java.util.zip.CheckedOutputStream;
public class CheckedOutputStreamDemo {
private static String SOURCE_FILE = "D:\\test\\Hello.txt";
private static String TARGET_FILE = "D:\\test\\Hello1.txt";
public static void main(String[] args) {
byte[] buffer = new byte[1024];
try {
FileOutputStream fout = new FileOutputStream(TARGET_FILE);
CheckedOutputStream checksum = new CheckedOutputStream(fout, new Adler32());
FileInputStream fin = new FileInputStream(SOURCE_FILE);
int length;
while((length = fin.read(buffer)) > 0) {
checksum.write(buffer, 0, length);
}
fin.close();
fout.close();
System.out.println("File copied!");
System.out.println("Adler32 Checksum is : " + checksum.getChecksum().getValue());
} catch(IOException ioe) {
System.out.println("IOException : " + ioe);
}
}
}
让我们编译并运行上面的程序,这将产生以下结果 -
File copied!
Adler32 Checksum is : 1126631102