In PHP, i've been able to use GET methods fairly easily. For example:
www.test.com/test.php?id=29328932
And then using that information i can do this in PHP to get the value:
$id = $_GET["id"];
In Java, i have a similar link:
www.test.com/Test?id=8127
However, i'm finding it a little difficult to figure out how to get the variable/value from the parameter. Is it possible to do this in Java?