我正在试图弄清楚如何使用来自java的http连接连接到Hana XS,我花了几天时间在互联网上搜索任何相关内容但却找不到任何内容。
我只是尝试了一些事情,我能想到的最好的是:
public static boolean testConnection(String host, String port,String userID,String certificate)
{
boolean success = false;
String https_url = "https://"+host+":"+port;
URL url ;
try{
url = new URL (https_url);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("content-type", "application/x-www-form-urlencoded");
con.setRequestProperty("Authorization", certificate);
int response = con.getResponseCode();
System.out.println("Response: "+ response);
}
catch(Exception e)
{
e.printStackTrace();
}
return success;
}
这显然不起作用,因为我不知道如何形成连接字符串并发送请求。 任何帮助将不胜感激。