Here you can find the source of writeStream(byte[] data, OutputStream out)
Parameter | Description |
---|---|
IOException | if an I/O error occurs. |
public static void writeStream(byte[] data, OutputStream out) throws IOException
//package com.java2s; /*//from w w w .java 2s . c o m * Copyright (c) 2000 - 2005 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.html". * * Initial Contributors: * Nokia Corporation - initial contribution. * * Contributors: * * Description: * */ import java.io.IOException; import java.io.OutputStream; public class Main { /** * Writes data into the stream and closes the output stream * * @throws IOException if an I/O error occurs. */ public static void writeStream(byte[] data, OutputStream out) throws IOException { try { out.write(data); out.flush(); } finally { out.close(); } } }