HttpURLConnection conn = null; try { // HTTP通信開始 URL url = new URL("http://localhost/hoge"); conn = (HttpURLConnection)url.openConnection(); conn.setDoOutput(true); conn.setUseCaches(false); conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); conn.connect(); // パラメータ送信 PrintStream ps = new PrintStream(conn.getOutputStream()); ps.print("a=111&b=222"); ps.flush(); ps.close(