如何从Java应用程序设置Https连接

mag*_*iam 6 java api https

我使用java创建桌面应用程序,此应用程序使用API​​.为了保证与API的通信,我们得到了他们支持使用HTTPS的通知.请指导我如何从Java客户端设置https连接.

API具有此功能,表明它可以选择安全连接:

private String getUrlAddress(XmlRequest request) {
    // determine if this is a secure connection
    String url = this.ssl ? "https://" : "http://";

    // determine service endpoint based on type of class/request passed in
    if( request.getClass() == MessageRequest.class) {
        url += ClockWorkSmsService.SMS_URL;
    }
    else {
        url += ClockWorkSmsService.CREDIT_URL;
    }

    return url;
}
Run Code Online (Sandbox Code Playgroud)

这段代码让我觉得"请求"将是我当前的网址或服务器,因此我将在我这边设置https连接.

Clockworksms API包装器:

import com.clockworksms.*;

public class DemoSms
{
   public static void main(String[] args)
   {
      try
      {
         ClockWorkSmsService clockWorkSmsService = new ClockWorkSmsService("apikey");
         SMS sms = new SMS("441234567890", "Hello World");         
         ClockworkSmsResult result = clockWorkSmsService.send(sms);

         if(result.isSuccess())
         {
            System.out.println("Sent with ID: " + result.getId());
         }
         else
         {
            System.out.println("Error: " + result.getErrorMessage());
         }
      }
      catch (ClockworkException e)
      {
         e.printStackTrace();
      }
   }
}
Run Code Online (Sandbox Code Playgroud)

Joh*_*ohn 2

如果它是安全的 REST API。看看这里

如果它只是您需要访问的 HTTP 资源,那么请查看Apache HTTPClient库及其教程

那里有数百个资源,请尝试然后发布具体问题。