これが私のコードです:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.webcitation.org/comb.php");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair(??, ??));
nameValuePairs.add(new BasicNameValuePair("fromform", "2"));
nameValuePairs.add(new BasicNameValuePair("email", "example@example.com"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String line = "";
while((line = rd.readLine()) != null) {
System.out.println(line);
}
} catch (Exception e) {
System.out.println(e);
}
そして、これが私が模倣しようとしているフォームのHTMLコードです:http ://www.webcitation.org/69Qsz3Tdn
Javaを介してURLなどをPHPファイルに送信し、応答を読み取ろうとしていhttp://video.google.com/?hl=en&tab=wv
ますhttp://maps.google.com/maps?hl=en&tab=wl
。name
sにはsがないのでhref
、困惑しています。また、チェックボックスにはvalue
sがないため、チェックされているかどうかを確認できません。
助けてくれてありがとう!