Java HTTP Post writeString(HttpURLConnection conn, String content, String charsetName)

Here you can find the source of writeString(HttpURLConnection conn, String content, String charsetName)

Description

write String

License

Apache License

Declaration

public final static void writeString(HttpURLConnection conn, String content, String charsetName)
        throws IOException 

Method Source Code

//package com.java2s;
/*/*from   ww  w. j a v  a  2 s . c o m*/
 * Copyright Bruce Liang (ldcsaa@gmail.com)
 *
 * Version   : JessMA 3.5.1
 * Author   : Bruce Liang
 * Website   : http://www.jessma.org
 * Project   : http://www.oschina.net/p/portal-basic
 * Blog      : http://www.cnblogs.com/ldcsaa
 * WeiBo   : http://weibo.com/u/1402935851
 * QQ Group   : 75375912
 *
 * 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;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.HttpURLConnection;

public class Main {

    public final static void writeString(HttpURLConnection conn, String content, String charsetName)
            throws IOException {
        writeString(conn.getOutputStream(), content, charsetName);
    }

    public final static void writeString(OutputStream os, String content, String charsetName) throws IOException {
        PrintWriter pw = new PrintWriter(new OutputStreamWriter(os, charsetName));

        pw.write(content);
        pw.flush();
        pw.close();
    }
}

Related

  1. sendPostRequest(String requestURL, Map params)
  2. URLPost(String strUrl, Map map)
  3. writeBody(HttpURLConnection connection, String body)
  4. writeContent(HttpURLConnection urlConn, String content)
  5. writeFileFromUrl(URL sourceUrl, File targetFile)
  6. writeToConnection(final HttpURLConnection couchdbConnection, final String content)