thanks for your answer, now i changed my code, and i got juste the first element, how can i got all element ?
my new code:
try {
JSONParser parser = new JSONParser();
Result result = Result.fromContent(parser.parse(new InputStreamReader(input)));
Hashtable res = (Hashtable)result.get("result");
Hashtable post = (Hashtable)res.get("posts");
System.out.println("" + post.get("signature"));
} catch (IOException ex) {
System.out.println(ex.getMessage());