5

次のような HTML フォームがあります。

<form name="form1" method="post" action="/confirm.asp">
    <input type="text" name="data1" size="20" value=""><br>
    <input type="text" name="data2" size="20" value=""><br>
    <input type="Submit" name=submit value="Submit">
</form>

Java を使用してデータを渡し、フォームが送信されたときに続くページを読みたいと考えていますdata1data2これは method=post なので使えませんhttp://somesite.com/confirm.asp?data1=foo&data2=foo

助けてもらえますか?

4

4 に答える 4

4
/* create a new URL and open a connection */
URL url = new URL("http://somesite.com/confirm.asp");
URLConnection con = url.openConnection();
con.setDoOutput(true);

/* wrapper the output stream of the connection with PrintWiter so that we can write plain text to the stream */
PrintWriter wr = new PrintWriter(con.getOutputStream(), true);

/* set up the parameters into a string and send it via the output stream */
StringBuilder parameters = new StringBuilder();
parameters.append("data1=" + URLEncoder.encode("value1", "UTF-8"));
parameters.append("&");
parameters.append("data2=" + URLEncoder.encode("value2", "UTF-8"));
wr.println(parameters);
wr.close();

/* wrapper the input stream of the connection with BufferedReader to read plain text, and print the response to the console */
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));
String line;
while((line = br.readLine()) != null) System.out.println(line);
br.close();
于 2012-07-16T02:34:44.943 に答える
3

これがLinkのコードです。これがお役に立てば幸いです:)

import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class HttpPostForm
{
  public static void main(String[] args)
  {
    try
    {
      URL url = new URL( "http://www.aaaa.com/xyz.asp" );

      HttpURLConnection hConnection = (HttpURLConnection)
                             url.openConnection();
      HttpURLConnection.setFollowRedirects( true );

      hConnection.setDoOutput( true );
      hConnection.setRequestMethod("POST"); 

      PrintStream ps = new PrintStream( hConnection.getOutputStream() );
      ps.print("param1=abcd&amp;param2=10341");
      ps.close();

      hConnection.connect();

      if( HttpURLConnection.HTTP_OK == hConnection.getResponseCode() )
      {
        InputStream is = hConnection.getInputStream();
        OutputStream os = new FileOutputStream("output.html");
        int data;
        while((data=is.read()) != -1)
        {
          os.write(data);
        }
        is.close();
        os.close();
        hConnection.disconnect();
      }
    }
    catch(Exception ex)
    {
      ex.printStackTrace();
    }
  }
}
于 2012-07-16T03:26:59.627 に答える
2

JavaでPOSTリクエストを作成するには、URLConnectionを介してターゲットURLに接続する必要があります。次に、ヘッド境界のバイト、境界メッセージ(キー、値、およびその他のリクエストデータが配置される場所)、および終了境界。

私のアプリケーション用にPostProcessクラスを作成しました。これにより、非同期POSTリクエストのアップロード、Key-Valueパラメーター、ファイルパラメーター(つまり、フォームへのファイルアップロード入力)、およびアップロードの進行状況の追跡が可能になります。また、サーバーの応答も記録します。

サイズと読みやすさのために、コードを外部からhttp://textu.be/Tにアップロードしました。

于 2012-07-16T03:44:05.263 に答える
1

次のコードを試してください

String url="www.somesite.com";     
Document doc = Jsoup.connect(url).data("data1", "foo").data("data2","foo")
                .userAgent("Mozilla/5.0 (Windows; U; WindowsNT 5.1; en-US; rv1.8.1.6) Gecko/20070725 Firefox/2.0.0.6")
                .referrer("http://www.google.com").post();
于 2015-11-09T14:53:21.180 に答える