send Post and set user-agent - Android Network

Android examples for Network:URL

Description

send Post and set user-agent

Demo Code


//package com.java2s;
import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;
import java.io.PrintWriter;

import java.net.URL;
import java.net.URLConnection;

public class Main {

    public static String sendPost(String url, String param) {
        PrintWriter out = null;//from  w  ww . j  a va  2 s .co m
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // URL
            URLConnection conn = realUrl.openConnection();
            // 
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
            // POST
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // URLConnection
            out = new PrintWriter(conn.getOutputStream());
            // 
            out.print(param);
            // flush 
            out.flush();
            // BufferedReaderURL
            in = new BufferedReader(new InputStreamReader(
                    conn.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += "n" + line;
            }
        } catch (Exception e) {
            System.out.println("POST " + e);
            e.printStackTrace();
        }
        // finally
        finally {
            try {
                if (out != null) {
                    out.close();
                }
                if (in != null) {
                    in.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
        return result;
    }
}

Related Tutorials