Bu garip bir sorundur. İşte benim kod
 String reply = listen.executeUrl("http://localhost:8080/JavaBridge/reply.php); 
executeUrl returns as String object whatever is returned by the reply.php file. Now comes the problem. In reply.php I am returning an PHP array and reply is a String.
Ben ne zaman
System.out.println("Reply = "+reply);  
Ben olsun
Reply =       array(2) {  [0]=>  string(14) "Dushyant Arora"  [1]=>  string(19
) "@dushyantarora13 hi"}
Ama cevap yine bir String. Nasıl bir dize dizisine ya da bir dizi haline dönüştürebilirim.
