0

我有这个简单的 php 代码,并希望以这种方式在 java 应用程序中使用此代码,即用户在 java 控制台中输入 id 并检查该 id 的状态,然后将其显示给用户

我应该将此代码更改为java代码吗?如何?请帮帮我

<?php
// www.webmn.net
function yahoo($id){
$url = 'http://opi.yahoo.com/online?u=';
$data = file_get_contents($url . $id);
if (trim(strtolower(strip_tags($data))) != 'user not specified.') {
return (strlen($data) == 140) ? 'online' : 'offline';
} else {
return trim(strip_tags($data));
}
}
?>
4

2 回答 2

1

您可以将 php 文件放入您的服务器中,然后使用此功能从您的 java 应用程序向其发送发布请求

public static String httpPost(String urlStr, String[] paramName,
            String[] paramVal) throws Exception {
              URL url = new URL(urlStr);
              HttpURLConnection conn =
                  (HttpURLConnection) url.openConnection();
              conn.setRequestMethod("POST");
              conn.setDoOutput(true);
              conn.setDoInput(true);
              conn.setUseCaches(false);
              conn.setAllowUserInteraction(false);
              conn.setRequestProperty("Content-Type",
                  "application/x-www-form-urlencoded");

          // Create the form content
          OutputStream out = conn.getOutputStream();
          Writer writer = new OutputStreamWriter(out, "UTF-8");
          for (int i = 0; i < paramName.length; i++) {
            writer.write(paramName[i]);
            writer.write("=");
            writer.write(URLEncoder.encode(paramVal[i], "UTF-8"));
            writer.write("&");
          }
          writer.close();
          out.close();

          if (conn.getResponseCode() != 200) {
            throw new IOException(conn.getResponseMessage());
          }

          // Buffer the result into a string
          BufferedReader rd = new BufferedReader(
              new InputStreamReader(conn.getInputStream()));
          StringBuilder sb = new StringBuilder();
          String line;
          while ((line = rd.readLine()) != null) {
            sb.append(line);
          }
          rd.close();

          conn.disconnect();
          return sb.toString();
        }

于 2012-07-25T11:23:56.590 回答
1

这段代码是关于 ajax 请求的。

1、可以使用HTTPclient重写PHP代码。

2、下载一个PHP服务器,如resin:

http://www.caucho.com/resin-application-server/

然后,用 java 运行 PHP-server(通过一个 cmd.bat 文件),你编写一个 Java-HTTPclient 来访问这个 PHP 页面以获得结果。

祝你好运。

于 2012-07-25T11:26:09.160 回答