我有以下代碼需要正常的HTTP GET請求並將輸出html作爲字符串返回。在Android中獲取HTTPS GET請求的內容
public static String getURLContent(String URL){
String Result = "";
String IP = "http://localhost/";
try {
// Create a URL for the desired page
URL url = new URL(IP.concat(URL));
// Read all the text returned by the server
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while ((str = in.readLine()) != null) {
// str is one line of text; readLine() strips the newline character(s)
Result = Result+str+"~";
}
in.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return Result;
}
我想實現同樣的事情無符號SSL證書,但我有點在Java或者Android的編程新手,並找到類似的問題非常混亂以前的一些反應。
有人可以更改上面的代碼以使用HTTPS請求嗎?
另一個問題是,如果我通過GET請求發送未加密的數據並將數據庫條目打印到函數返回內容的網頁上,是否會存在中間人攻擊的風險。使用POST請求會更好嗎?
我選擇使用SSL的原因是因爲有人告訴我發送的數據是加密的。數據是敏感的,如果我發送像localhost/login.php?user = jim & password = sd7vbsksd8這將返回「user = jim權限=管理員年齡= 23」這是我不希望別人看到的數據他們只是使用瀏覽器併發送相同的請求。
謝謝,當我使用您提供的鏈接時,這樣做的伎倆。 – 2012-02-21 17:25:03