For this example I used a Java Toolkit: json-simple, you can download it here: https://code.google.com/p/json-simple/downloads/list
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
/* import java.io.BufferedReader; public class JsonParser { public static void main(String[] args) { try { String inputLine; // Loop through each item Long id = (Long) tutorials.get(“ID”); String title = (String) tutorials.get(“post_title”); System.out.println(“n“); |
Contents of tutorials.php:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php require_once( ‘../wp-load.php’ ); if( isset( $_GET[‘data’] ) && $_GET[‘data’] == ‘all’ ) { $tutorials_data = get_posts( $all_tutorials ); |
Result from NetBeans console: