0

URLからパラメータを受け入れるJavaサーブレットをセットアップし、正しく機能させました。

public class GetThem extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)
   throws IOException, ServletException
{
    try {

            double lat=Double.parseDouble(request.getParameter("lat"));
            double lon=Double.parseDouble(request.getParameter("lon"));
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println(lat + " and " + lon);

        } catch (Exception e) {

            e.printStackTrace();
    }
  }       
}

したがって、このリンクにアクセスすると、http: //www.example.com :8080 / HttpPost / HttpPost?lat = 1&lon= 2が出力されます。

  "1.0 and 2.0"

私は現在、このコードを使用して別のJavaプログラムから呼び出しています。

try{
            URL objectGet = new URL("http://www.example.com:8080/HttpPost/HttpPost?lat=" + Double.toString(dg.getLatDouble()) + "&lon=" + Double.toString(dg.getLonDouble()));
            URLConnection yc = objectGet.openConnection();
            BufferedReader in = new BufferedReader(
                    new InputStreamReader(
                    yc.getInputStream()));
            in = new BufferedReader(
            new InputStreamReader(
            yc.getInputStream()));
            ...

ここで、このデータをサーバーに渡すためにURLパラメーターを使用しないように変更します。このサーバーにもっと大きなメッセージを送りたいです。これを実現するには、httpgetではなくhttppostを使用する必要があることは承知していますが、その方法がわかりません。

データを受信して​​いるサーバー側で何かを変更する必要がありますか?このデータを投稿しているクライアント側で何をする必要がありますか?

どんな助けでも大歓迎です。理想的には、このデータをJSON形式で送信したいと思います。

4

2 に答える 2

0

java HTTP POST example以下は、グーグルで「」によって見つけられた最初のリンクからのサンプルです。

try {
    // Construct data
    StringBuilder dataBuilder = new StringBuilder();
    dataBuilder.append(URLEncoder.encode("key1", "UTF-8")).append('=').append(URLEncoder.encode("value1", "UTF-8")).
       append(URLEncoder.encode("key2", "UTF-8")).append('=').append(URLEncoder.encode("value2", "UTF-8"));

    // Send data
    URL url = new URL("http://hostname:80/cgi");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
    wr.write(dataBuilder.toString());
    wr.flush();

    // Get the response
    BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
    String line;
    while ((line = rd.readLine()) != null) {
        // Process line...
    }
    wr.close();
    rd.close();
} catch (Exception e) {
}
于 2012-07-20T05:20:12.633 に答える
0

接続とストリームを処理する代わりに、HTTPClient を使用する必要があると思います。http://hc.apache.org/httpclient-3.x/tutorial.html を確認してください

于 2012-07-20T05:17:11.777 に答える