/* * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* * @test * @bug 1267039 1267043 4193729 4358774 * @summary Check for correct handling of parameters to * XXXXOutputStream.write(b, off, len). *
*/
/* check for correct handling of null b */ publicstaticvoid doTest1(OutputStream out) throws Exception { byte b[] = null; try {
out.write(b, 0, 32);
} catch (NullPointerException npe) {
System.err.println("SuccessFully completed null b test on " + out); return;
} thrownew RuntimeException(out + " Failed null b test");
}
publicstaticvoid main(String args[]) throws Exception{ /* initialise stuff here */
File fn = new File("x.WriteBounds");
FileOutputStream fout = new FileOutputStream(fn); for (int i = 0; i < 32; i++) {
fout.write(i);
}
fout.close();
byte b[] = newbyte[64]; for(int i = 0; i < 64; i++) {
b[i] = 1;
}
/* test for different output streams */
FileOutputStream fos = new FileOutputStream(fn);
doTest(fos);
doTest1(fos);
fos.close();
ObjectOutputStream oos = new ObjectOutputStream(new MyOutputStream());
doTest(oos);
doTest1(oos);
oos.close();
BufferedOutputStream bos = new BufferedOutputStream(new MyOutputStream());
doTest(bos);
doTest1(bos);
bos.close();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
doTest(baos);
doTest1(baos);
baos.close();
DataOutputStream dos = new DataOutputStream(new MyOutputStream());
doTest(dos);
doTest1(dos);
dos.close();
PipedInputStream pis = new PipedInputStream();
PipedOutputStream pos = new PipedOutputStream();
pos.connect(pis);
doTest(pos);
doTest1(pos);
pos.close();
DeflaterOutputStream dfos = new DeflaterOutputStream(new MyOutputStream());
doTest(dfos);
doTest1(dfos);
dfos.close();
OutputStream nos = OutputStream.nullOutputStream();
doTest(nos);
doTest1(nos);
nos.close();
/* cleanup */
fn.delete();
}
}
/* An OutputStream class used in the above tests */ class MyOutputStream extends OutputStream {
public MyOutputStream() {
}
publicvoid write(int b) throws IOException {
}
}
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.