I am going to embed a java application on a webpage and I am wondering if it is possible to do any of the following things
Is it possible to recieve GET or POST data using java.
For example to recieve GET data in php we would write:
Can something similar to this be done in java?
If this is not possible would I be able to read the full URL of the page where the java object is embedded?
The reason I want to know if this is possible is so I can send data from another page on my website that doesnt have java to a java application on a different page.
( I know I am a complete java noob. :nuts: )
Is it possible to recieve GET or POST data using java.
For example to recieve GET data in php we would write:
PHP:
<?php
$data = $_GET['name'];
?>
If this is not possible would I be able to read the full URL of the page where the java object is embedded?
The reason I want to know if this is possible is so I can send data from another page on my website that doesnt have java to a java application on a different page.
( I know I am a complete java noob. :nuts: )