Java OutputStream Write writeStream(String content, String charset, OutputStream outputStream)

Here you can find the source of writeStream(String content, String charset, OutputStream outputStream)

Description

write Stream

License

Apache License

Declaration

static void writeStream(String content, String charset, OutputStream outputStream) throws IOException 

Method Source Code


//package com.java2s;
/*/*from ww  w .jav  a 2 s. com*/
 * Copyright 2002-2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.IOException;

import java.io.OutputStream;

public class Main {
    static void writeStream(String content, String charset, OutputStream outputStream) throws IOException {
        if (content != null) {
            outputStream.write(content.getBytes(charset));
            outputStream.flush();
        }
    }
}

Related

  1. writeStream(InputStream in, File file)
  2. writeStream(InputStream inputStream, OutputStream out)
  3. writeStream(OutputStream out, byte[] data)
  4. writeStream(OutputStream output, String dataStr)
  5. writeStream(OutputStream outputStream, InputStream inputStream, byte[] buffer)
  6. writeStreamBuffered(final Reader in, final Writer out)
  7. writeStreamCharwise(final Reader in, final Writer out)
  8. writeStreamCharwiseLimited(final Reader in, final Writer out, final int len)
  9. writeStreamFromString(String contents, OutputStream outputStream)