0

我必须在客户端检查我的 Swing 应用程序中的登录凭据,该应用程序由可执行 jar 文件调用。填写完详细信息后,它会签入数据库中的 servlet。我的 servlet 工作正常。

如何将 Swing 应用程序(客户端)连接到 servlet?

4

2 回答 2

1

您可以使用 HttpURLConnection 从 swing 向您的服务器发出 http 请求。

例子:

HttpURLConnection connection;


try {

      String urlParameters = "username="+URLEncoder.encode(username,"UTF-8") 
                    +"&password="+URLEncoder.encode(password,"UTF-8");
      //Create connection

      URL url=new URL("your servlet url goes here");
      connection = (HttpURLConnection)url.openConnection();
      connection.setRequestMethod("POST");
      connection.setRequestProperty("Content-Type", 
           "application/x-www-form-urlencoded");

      connection.setRequestProperty("Content-Length", "" + 
               Integer.toString(urlParameters.getBytes().length));
      connection.setRequestProperty("Content-Language", "en-US");  

      connection.setUseCaches (false);
      connection.setDoInput(true);
      connection.setDoOutput(true);

      //Send request
      DataOutputStream wr = new DataOutputStream (
                  connection.getOutputStream ());
      wr.writeBytes (urlParameters);
      wr.flush ();
      wr.close ();

      //Get Response    
      InputStream is = connection.getInputStream();
      BufferedReader rd = new BufferedReader(new InputStreamReader(is));
      String line;
      while((line = rd.readLine()) != null) {
        // read response from your servlet
      }
      rd.close();


    } catch (Exception e) {

      e.printStackTrace();


    } finally {

      if(connection != null) {
        connection.disconnect(); 
      }
    }
于 2013-05-13T11:06:55.977 回答
1

请看@这个帖子

如何在 apache 中使用 HttpClient 从 Java Swing 登录页面调用 Servlet?

可能有助于解决..

干杯!!!

于 2013-05-13T10:52:03.513 回答