lets assume this URL...
http://www.example.com/page.php?id=10
(Here id is no GET its POST Request...)
now here i wanna send the the id = 10...to the server's page page.php because it is POST method i m not able to send this like /page.php?id=10...
how can i do this in java....
i did this :
URL aaa = new URL("http://www.example.com/page.php");
URLConnection ccc = aaa.openConnection();
now whats next...just show me how to send id = 10 on page.php using Java...aa