因此,我试图部分用Java重新创建一个较旧的PHP程序,但是我遇到了障碍。无论我做什么,似乎都无法将信息从Java类发送到PHP脚本。 PHP脚本托管在联机服务器上,而Java类则位于客户端计算机上。 我的代码如下:
String query = SearchTextBox.getText();
Connection conn = DriverManager.getConnection(
"jdbc:mysql://localhost/wc_wca?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC","root","pass" );
String sql = "SELECT * FROM Persons WHERE id = ?";
PreparedStatement ps = conn.prepareStatement(sql);
ps.setString(1, query);
ResultSet rs = ps.executeQuery();
while (rs.next())
{
try{
URL url = new URL("http://worldcubers.com/setup/index.php");
URLConnection con = url.openConnection();
String name = rs.getString("name");
String id = rs.getString("id");
// activate the output
con.setDoOutput(true);
PrintStream printstream = new PrintStream(con.getOutputStream());
// send your parameters to your site
printstream.print("&name=" + name);
printstream.print("&id=" + id);
// we have to get the input stream in order to actually send the request
con.getInputStream();
// close the print stream
ps.close();
}
catch (IOException ex) {
Logger.getLogger(MainUI.class.getName()).log(Level.SEVERE, null, ex);
}
initAndShowGUI();
this.dispose(); //to close the current jframe
}
在PHP脚本中,访问变量的行如下:
$s = $_SESSION['name'];
$q = $_SESSION['id'];
我已经在StackOverflow上尝试过许多不同的文章,但是无论如何,我都似乎无法将name和id变量发送到PHP脚本。
答案 0 :(得分:0)
我认为现在是时候开始考虑使用JSON来解决您面临的问题了 还要在这里检查How to parse JSON in Java
我正在使用JSON向android应用程序来回发送变量。我认为在这里同样适用。
然后考虑使用 $ _ POST 或 $ _ GET ,但不使用 $ _ SESSION