简体   繁体   中英

Getting JSON data with PHP

How can I get the data this method is forwarding to a PHP webpage ?

  URL url;
   HttpURLConnection connect = null;
   BufferedReader rd;
   StringBuilder sb;
   OutputStreamWriter wr;
   // Change this url to the url of your receiveJsonSms.php.
   String urlString = "http://www.paintedostrich.com/receiveJsonSms.php";
    try {
  System.setProperty("http.keepAlive", "false");
  url = new URL(urlString);
  connect = (HttpURLConnection) url.openConnection();
  connect.setRequestMethod("POST");
  connect.setDoOutput(true);
  connect.setDoInput(true);
  connect.setReadTimeout(10000);

  connect.connect();

  // write to the stream
  String data = URLEncoder.encode("texts", "UTF-8") + "="
          + URLEncoder.encode(jsonTexts.toString(), "UTF-8");

  wr = new OutputStreamWriter(connect.getOutputStream());
  wr.write(data);
  wr.flush();

  // read the result from the server
  rd = new BufferedReader(new InputStreamReader(connect.getInputStream()));
  sb = new StringBuilder();
  String line = null;
  while ((line = rd.readLine()) != null) {
    sb.append(line);
  }`

To decode json in PHP use json_decode() .

<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

var_dump(json_decode($json));
var_dump(json_decode($json, true));

?>

I think the answer is

sb.ToString(); 

thats the data you get from the server if you want to read the JSON use this

http://www.codeproject.com/Tips/397574/Use-Csharp-to-get-JSON-data-from-the-web-and-map-i

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM