0

我有一些我正在努力实现的目标。

我在 localhost 的 8080 端口上运行了一个 Web 应用程序。

我有一个在 localhost:9005 上运行的 HTTP 服务器。

我有一个将信息传递给 servlet java 类的 JSP 表单,该类又使用数据字符串向 HTTP 服务器 localhost:9010 上的 URL 执行 HTTP 发布。

我需要做的是将 POST 和 GET 作为同一连接的一部分执行。我让它们作为两个单独的呼叫工作,但不在同一个连接上。它必须是相同的连接,当我发布数据时,HTTP 服务器获取此数据,处理它并将唯一数据输出到此 URL。因此,GET 需要与他 POST 属于同一连接的一部分。

有人可以帮忙吗?

这是我的流程请求 java 代码:

    import java.net.HttpURLConnection;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.net.URLEncoder;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.UnsupportedEncodingException;
    import javax.servlet.*;
    import javax.servlet.http.*;


    import java.util.List; 
    import java.util.Map.Entry; 

    public class ProcessRequest {

        public void sendRequestToGateway() throws Throwable{

            String message = URLEncoder.encode("OP1387927", "UTF-8");    

            try {           
                URL url = new URL("http://localhost:9005/json");            
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();            
                connection.setDoOutput(true);            
                connection.setRequestMethod("POST");            
                OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());           
                writer.write("operator=" + message);       
                writer.close();   

                System.out.println("connection.getResponseCode() : " + connection.getResponseCode());
                System.out.println("connection.getResponseMessage()" + connection.getResponseMessage());

                if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) { 

                    receiveMessageFromGateway();

                } else {                
                    // Server returned HTTP error code.            
                }   

                //receiveMessageFromGateway();

            } catch (MalformedURLException e) {            
                // ...        
            } catch (IOException e) {           
                    // ...        
            }
        }

        public void receiveMessageFromGateway()  throws Throwable { 


            HttpURLConnection client = null; 
            OutputStreamWriter wr = null; 
            BufferedReader rd = null; 
            StringBuilder sb = null; 
            String line = null; 

            try { 

              URL url = new URL("http://localhost:9005/json"); 
              client = (HttpURLConnection) url.openConnection(); 
              client.setRequestMethod("GET"); 
              client.setDoOutput(true); 
              client.setReadTimeout(10000); 

              client.connect(); 
              System.out.println(" *** headers ***"); 
              for (Entry<String, List<String>> headernew : client.getHeaderFields().entrySet()) { 
                System.out.println(headernew.getKey() + "=" + headernew.getValue()); 
              } 

              System.out.println(" \n\n*** Body ***"); 
              rd = new BufferedReader(new InputStreamReader(client.getInputStream())); 
              sb = new StringBuilder(); 

              while ((line = rd.readLine()) != null) { 
                sb.append(line + '\n'); 
              } 

              System.out.println("body=" + sb.toString()); 

            } finally { 
              client.disconnect(); 
              rd = null; 
              sb = null; 
              wr = null; 
            } 
         }  

    }
4

3 回答 3

3

为什么不直接返回原始 POST 的结果?

于 2012-07-06T15:18:22.880 回答
1

通常,您无法使用HttpUrlConnection. 您也许可以将您的连接投射到特定的实现类并对其进行干扰,但这是一种非常不稳定的做法。

考虑到要求,Apache HttpClient 可能是更好的选择。

于 2012-07-06T15:17:47.367 回答
0

您可以为此使用 Apache HTTP 客户端。它非常简单。

如果您使用的是 maven,只需将以下行添加到您的 POM 文件中:

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.3.3</version>
</dependency>   

在这个例子中,我提交了一个 POST 请求,然后是一个 GET 请求。

看一看:

public static String get(String p_url) throws IOException
{       

        CloseableHttpClient httpclient = HttpClients.createDefault();

        // First request: POST
        HttpPost httpPost = new HttpPost("http://the-api-url.com/Login/Auth&token=12345"));
        CloseableHttpResponse response_post = httpclient.execute(httpPost);                 
        System.out.println(response_post.getStatusLine());          
        HttpEntity entity_post = response_post.getEntity();         
        System.out.println(EntityUtils.toString(entity_post));

        // Second request: GET
        HttpGet httpGet = new HttpGet(p_url);
        CloseableHttpResponse response_get = httpclient.execute(httpGet);  
        System.out.println(response_get.getStatusLine());           
        HttpEntity entity_get = response_get.getEntity();           
        System.out.println(EntityUtils.toString(entity_get));

        response_post.close();
        response_get.close();           
        return EntityUtils.toString(entity_get);             
    }
于 2014-03-14T14:10:11.723 回答