从Java调用PHP

时间:2013-02-07 17:34:11

标签: java php sql database

我试图从我的Java程序中调用一些PHP脚本,这样我就可以查询/修改我的数据库。我对数据库完全陌生,并且没有任何线索可以继续。

我试图从java中调用以下脚本。

脚本

<?php
include('test.php');

define("HOST", "localhost");

define("USERNAME", "xxxx");

define("PASSWORD", "xxxx");

define("DATABASE", "project_database");

mysql_connect(HOST, USERNAME, PASSWORD);

mysql_select_db(DATABASE);

?>

Java代码

 public static String excutePost(String targetURL, String urlParameters)
    {
      URL url;
      HttpURLConnection connection = null;  
      try {
        //Create connection
        url = new URL(targetURL);
        connection = (HttpURLConnection)url.openConnection();
        connection.setRequestMethod("POST");
        connection.setRequestProperty("Content-Type", 
             "application/x-www-form-urlencoded");

        connection.setRequestProperty("Content-Length", "" + 
                 Integer.toString(urlParameters.getBytes().length));
        connection.setRequestProperty("Content-Language", "en-US");  

        connection.setUseCaches (false);
        connection.setDoInput(true);
        connection.setDoOutput(true);

        //Send request
        DataOutputStream wr = new DataOutputStream (
                    connection.getOutputStream ());
        wr.writeBytes (urlParameters);
        wr.flush ();
        wr.close ();

        //Get Response  
        InputStream is = connection.getInputStream();
        BufferedReader rd = new BufferedReader(new InputStreamReader(is));
        String line;
        StringBuffer response = new StringBuffer(); 
        while((line = rd.readLine()) != null) {
          response.append(line);
          response.append('\r');
        }
        rd.close();
        return response.toString();

      } catch (Exception e) {

        e.printStackTrace();
        return null;

      } finally {

        if(connection != null) {
          connection.disconnect(); 
        }
      }
    }

目标网址应该是什么?

2 个答案:

答案 0 :(得分:3)

如果您想调用新流程,请参阅java.lang.Process

然而,Java能够通过JDBC直接与您的数据库通信,这是我强烈建议的方法。您不必以多种语言生成新进程或实现解决方案,并且可以使用大量与JDBC相关的框架来重现您的生活。数据库访问相当容易。

答案 1 :(得分:0)

您需要指定页面的链接,可能类似于'/localhost/yourPageInPhp.php

我假设您需要执行脚本并在Java

中显示其输出