Java File Append appendToOutputStream(OutputStream out, String value)

Here you can find the source of appendToOutputStream(OutputStream out, String value)

Description

append To Output Stream

License

Open Source License

Declaration

public static void appendToOutputStream(OutputStream out, String value) throws IOException 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.io.*;

public class Main {
    public static void appendToOutputStream(OutputStream out, String value) throws IOException {
        out.write(value.getBytes("UTF-8"));

    }//from  ww  w .  jav  a 2 s .  c o  m
}

Related

  1. appendToArray(final File[] original, final File[] toAppend)
  2. appendToCollection(final Vector original, final File[] toAppend)
  3. appendToFileName(File file, String str)
  4. appendToken(StringBuilder path, String token, boolean skipEmpty, boolean skipSeparator)
  5. appendToOutput(InputStream input, OutputStream output)