tags:

views:

40

answers:

2

Hi everybody!

I've a simple webpage with a java applet. The applet calculated a few values. (up to 30 lines of text) Then I want to send the values back to the server.

Sorry for my english and thanks for your help!

A: 

Just do a GET / POST HTTP call to your webserver with the value as parameter. You should have any server side programming language in order to process those parameters.

rossoft
how to do a post http call of an applet?
someone
Here you have several examples:http://www.sum-it.nl/en200141.html
rossoft
+1  A: 

Use URL and URLConnection (or HTTPUrlConnection)

Reading from and Writing to a URLConnection

jitter