OK所以這裏的代碼:爪哇 - POST VS JDBC
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
URL my_url = new URL("http://www.viralpatel.net/blogs/");
BufferedReader br = new BufferedReader(new InputStreamReader(my_url.openStream()));
String strTemp = "";
while(null != (strTemp = br.readLine())){
System.out.println(strTemp);
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
使用這種方法,我可以使用POST和使用PHP腳本GET方法。然後,我可以將PHP腳本用於MySQL數據庫,然後再將數據輸出回java applet。這可能嗎? (和更安全?)
謝謝。
爲什麼我不能只在PHP頁面上執行mysql工作並顯示java applet? – nn2 2010-06-06 04:17:41