web-dev-qa-db-ja.com

Javaで投稿フォームを送信する方法は?

WebサイトでJavaを使用して投稿フォームを送信したいと思います。

URL url = new URL("http://127.0.0.1");
URLConnection conn=url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);

投稿フォームは次のようになります。

<form action="prikaz4.php" method="post">
    <select name="igralec"/>
    <option value="Kobe Bryant">Kobe Bryant</option>
    <option value="Dwayne Wade">Dwayne Wade</option>
    <input type="submit" />
</form>
18
Borut Flis

次のようなコードを書くことができます。

 import org.Apache.commons.httpclient.HttpClient;
 import org.Apache.commons.httpclient.HttpException;
 import org.Apache.commons.httpclient.HttpStatus;
 import org.Apache.commons.httpclient.methods.PostMethod;
 import org.Apache.http.impl.client.HttpClients;

public class PostReqEx {

  public void sendReq(String url,String email,String fname){
    HttpClient httpClient = HttpClients.createDefault();
    PostMethod postMethod = new PostMethod(url);
    postMethod.addParameter("Email", email);
    postMethod.addParameter("fname", fname);
    try {
        httpClient.executeMethod(postMethod);
    } catch (HttpException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    if (postMethod.getStatusCode() == HttpStatus.SC_OK) {
        String resp = postMethod.getResponseBodyAsString();
    } else {
         //...postMethod.getStatusLine();
    }
  }
}
26
Satya

ApacheのHttpClientライブラリ の使用を検討することもできます。 HttpPostクラスがあり、非常に使いやすいです。

1
Aleks G

Apacheの HttpClient プロジェクトは、これをより適切に処理します。

または、このコードを試すことができます:

// Using Java.net.URL and  
  //Java.net.URLConnection  
  URL url = new URL("http://jobsearch.dice.com/jobsearch/jobsearch.cgi");   
  URLConnection connection = url.openConnection();
  connection.setDoOutput(true);  
  OutputStreamWriter out = newOutputStreamWriter(uc.getOutputStream(), "8859_1");   
  out.write("username=bob&password="+password+"");   
  // remember to clean up   
  out.flush();   
  out.close();
1
Aloong