温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

java如何获取PHP数据

发布时间:2020-09-16 09:28:10 来源:亿速云 阅读:114 作者:小新 栏目:编程语言

这篇文章给大家分享的是有关java如何获取PHP数据的内容。小编觉得挺实用的,因此分享给大家做个参考。一起跟随小编过来看看吧。

java获取php数据的方法:

PHP文件:

<?php
class Test{
  //日志路径
  const LOG_PATH="E:\phpServer\Apache\logs\\error.log";
  //显示的行数
  const PAGES=50;
  public static function main(){
    header("content-type:text/html;charset=utf-8");
     
    if(!empty($_GET['action'])){
      if(!method_exists('Test',$_GET['action'])){
        echo "404";
      }else{
        self::$_GET['action']();
      }
      exit;
    }
  }
 
  public static function showApacheLogs(){
    $test=new Test();
    $result=$test->readLogs(self::LOG_PATH,self::PAGES);
    $json=array();
    for($i=0;$i<count($result);$i++){
      $line=$result[$i];
      //注意这里,如果处理会json解析失败
      $line=str_replace("\r\n", "", $line);
      $result[$i]=array("num"=>$i+1,"msg"=>urlencode($line));
    }
    $str=stripslashes(urldecode(json_encode($result)));
    echo $str;
  }
   
  /**
  * 读取日志
  */
  private function readLogs($filePath,$num=20){
    $fp = fopen($filePath,"r");
    $pos = -2; 
    $eof = ""; 
    $head = false;  //当总行数小于Num时,判断是否到第一行了 
    $lines = array(); 
    while($num>0){ 
      while($eof != "\n"){ 
        if(fseek($fp, $pos, SEEK_END)==0){  //fseek成功返回0,失败返回-1 
          $eof = fgetc($fp); 
          $pos--; 
        }else{                //当到达第一行,行首时,设置$pos失败 
          fseek($fp,0,SEEK_SET); 
          $head = true;          //到达文件头部,开关打开 
          break; 
        } 
          
      } 
      array_unshift($lines,fgets($fp)); 
      if($head){ break; }         //这一句,只能放上一句后,因为到文件头后,把第一行读取出来再跳出整个循环 
      $eof = ""; 
      $num--; 
    } 
    fclose($fp); 
    return array_reverse($lines); 
  }
}
Test::main();

java文件:

import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
 
import org.json.JSONArray;
import org.json.JSONObject;
 
public class ReadLogs {
  public static void main(String[] args) throws Exception {
    URL url = new URL("http://localhost/test.php?action=showApacheLogs");
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setConnectTimeout(10000);
    conn.setRequestMethod("GET");
    conn.setDoInput(true);
    conn.setDoOutput(true);
 
 
    // 输出返回结果
    InputStream input = conn.getInputStream();
    int resLen =0;
    byte[] res = new byte[1024];
    StringBuilder sb=new StringBuilder();
    while((resLen=input.read(res))!=-1){
      sb.append(new String(res, 0, resLen));
    }
     
    String jsonStr=sb.toString();
    //String转换成JSON
    JSONArray jsonArray=new JSONArray(jsonStr);
    for(int i=0;i<jsonArray.length();i++){
      JSONObject jsonObject=new JSONObject(jsonArray.getString(i));
      String msg=(String) jsonObject.get("msg");
      int num=(int) jsonObject.get("num");
      System.out.println(num+":"+msg);
    }
  }
}

感谢各位的阅读!关于java如何获取PHP数据就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI