如何向网页发送和接收信息?

时间:2014-07-07 20:15:26

标签: java web

好的,基本上我有一个游戏,我希望能够上传和下载数据(高分),以便用户可以看到它。

我的麻烦在于我不知道如何将他们的分数上传到服务器。我不知道从哪里开始让程序下载信息(我希望它只下载所需的信息。过去我必须下载一个完整的网站来扫描它以获取所需的信息!)。

如果已经提出这个问题,我很抱歉,但我已经搜索了2个多小时的答案了!

2 个答案:

答案 0 :(得分:1)

这里需要使用HttpRequest。您可以将数据(建议使用JSON)从JAVA代码发送到服务器,服务器将其存储在DB中。这个主题太广泛了,所以我建议你先看看HttpRequest。

答案 1 :(得分:0)

好的,这是如何运作的:

You'll have 3 main components - JSP(because you tagged Java), Servlet and 
Java class.

    JSP, the web page will be loaded on client machine and the other 2 will be on 
    server along with the db.

    From JSP or the web page you'll make a request 
    (either synchronous or asynchronous).
        synchronous  : by submitting a form to the servlet
        asynchronous : by calling servlet method without submitting any for(AJAX)


    Now this request will either be for saving HighScore or retrieving HighScore, 
    therefore it will call the respective method from server(the servlet)
    and which in turn will call methods from Java Class(DAO, data access object). 

    DOA will return the required value or will store the value depending
    on the request.

您无需下载任何网站并在其中搜索数据。只需提出请求并处理回复。

servlet指南:http://www.tutorialspoint.com/servlets/