Je voudrais envoyer un formulaire de publication avec Java sur un site Web.
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);
le formulaire de publication ressemble à ceci.
<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>
Vous pouvez écrire du code similaire à ceci:
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();
}
}
}
Vous pouvez envisager d'utiliser bibliothèque HttpClient d'Apache . Il a la classe HttpPost
, qui est très facile à utiliser.
Le projet HttpClient d'Apache s'en occupera mieux pour vous.
ou vous pouvez essayer ce code:
// 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();