Applet 和 Servlet 通信

发布于 2025-01-04 21:58:00 字数 2709 浏览 0 评论 0原文

我有一个小程序需要向 servlet 提交分数,但它无法正常工作。

这是小程序的代码

private URLConnection getConnection() throws MalformedURLException, IOException {
        URL serverAddress = null;
        URLConnection conn = null;
        serverAddress = new URL("http://localhost/GamesPortal/submitScore");
        conn = serverAddress.openConnection();
        conn.setDoOutput(true);
        conn.setRequestProperty("Content-Type", "application/x-java-serialized-object");
        return conn;
    }

    private void sendRecievedata(GameInfo info) {
        try {
            URLConnection c = this.getConnection();
            OutputStream os =  c.getOutputStream();
            ObjectOutputStream oos = new ObjectOutputStream(os);
            oos.writeObject(info);
            oos.close();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

这是 servlet 代码

    try {
        HttpSession s = request.getSession(true);

        response.setContentType("application/x-java-serialized-object");
        InputStream in = request.getInputStream();
        ObjectInputStream ois = new ObjectInputStream(in);
        GameInfo info = (GameInfo) ois.readObject();

        if (info.getUserId() > 0) {
            Scores score = new Scores();
            score.submitScore(info);
        }
    } catch (Exception ex) {
        ex.printStackTrace();
    } finally {
    }
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    try {
        out.println("<html>");
        out.println("<head>");
        out.println("<title>Servlet submitScore</title>");            
        out.println("</head>");
        out.println("<body>");
        out.println("<h1>Servlet submitScore at " + request.getContextPath() + "</h1>");
        out.println("</body>");
        out.println("</html>");
    } catch {
        ex.printStackTrace();
    } finally {            
        out.close();
    }

现在我尝试通过浏览器访问 servlet,只是为了确保地址正确(确实如此),但由于某种原因,当我尝试从小程序本身,它不连接。 (调试器甚至没有启动)。

(根据建议,将 ex.printStackTrace(); 添加到每个 try catch 中,但我不知道应该在什么地方或在哪里查找它)

调用小程序的代码看起来与此类似: http://roseindia.net/jsp/simple-jsp-example /applet-in-jsp.shtml

<jsp:plugin code="Pong.class" name="Games/Pong/Pong" type="applet" width="800" height="600">
    <jsp:params>
        <jsp:param name="userId" value="<%= user.getUserId()%>" ></jsp:param>
    </jsp:params>
</jsp:plugin>

有什么我在这里忽略的吗?

I have an applet that needs to submit a score to a servlet and it is not working correctly.

This is the code for the applet

private URLConnection getConnection() throws MalformedURLException, IOException {
        URL serverAddress = null;
        URLConnection conn = null;
        serverAddress = new URL("http://localhost/GamesPortal/submitScore");
        conn = serverAddress.openConnection();
        conn.setDoOutput(true);
        conn.setRequestProperty("Content-Type", "application/x-java-serialized-object");
        return conn;
    }

    private void sendRecievedata(GameInfo info) {
        try {
            URLConnection c = this.getConnection();
            OutputStream os =  c.getOutputStream();
            ObjectOutputStream oos = new ObjectOutputStream(os);
            oos.writeObject(info);
            oos.close();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

And this is the servlet code

    try {
        HttpSession s = request.getSession(true);

        response.setContentType("application/x-java-serialized-object");
        InputStream in = request.getInputStream();
        ObjectInputStream ois = new ObjectInputStream(in);
        GameInfo info = (GameInfo) ois.readObject();

        if (info.getUserId() > 0) {
            Scores score = new Scores();
            score.submitScore(info);
        }
    } catch (Exception ex) {
        ex.printStackTrace();
    } finally {
    }
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    try {
        out.println("<html>");
        out.println("<head>");
        out.println("<title>Servlet submitScore</title>");            
        out.println("</head>");
        out.println("<body>");
        out.println("<h1>Servlet submitScore at " + request.getContextPath() + "</h1>");
        out.println("</body>");
        out.println("</html>");
    } catch {
        ex.printStackTrace();
    } finally {            
        out.close();
    }

Now I have tried accessing the servlet via the browser, just to make sure that the address is correct (it is), but for some reason when I try to access it from the applet itself, it does not connect. (the debugger does not even launch).

(added the ex.printStackTrace(); to each of the try catches, as per suggestion, but I have no idea what or where I'm supposed to look for this)

The code calling the applet looks similar to this:
http://roseindia.net/jsp/simple-jsp-example/applet-in-jsp.shtml

<jsp:plugin code="Pong.class" name="Games/Pong/Pong" type="applet" width="800" height="600">
    <jsp:params>
        <jsp:param name="userId" value="<%= user.getUserId()%>" ></jsp:param>
    </jsp:params>
</jsp:plugin>

Is there something that I am overlooking here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜灵血窟げ 2025-01-11 21:58:00

我已经设法让它发挥作用。

这是小程序的代码:

    private URLConnection getServletConnection()
        throws MalformedURLException, IOException {
    URL urlServlet = new URL("http://localhost:8080/GamePortal/submitScore");
    URLConnection con = urlServlet.openConnection();
    con.setDoOutput(true);
    con.setRequestProperty(
            "Content-Type",
            "application/x-java-serialized-object");
    return con;

}

private void onSendData(GameInfo info) {

    try {
        // send data to the servlet
        URLConnection con = getServletConnection();
        OutputStream outstream = con.getOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(outstream);
        oos.writeObject(info);
        oos.flush();
        oos.close();
        // receive result from servlet
        InputStream instr = con.getInputStream();
        ObjectInputStream inputFromServlet = new ObjectInputStream(instr);
        String result = (String) inputFromServlet.readObject();
        //JOptionPane.showMessageDialog(null, result);
        inputFromServlet.close();
        instr.close();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

这是 servlet 的代码:

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {        
    try {
        response.setContentType("application/x-java-serialized-object");
        // read a String-object from applet
        // instead of a String-object, you can transmit any object, which
        // is known to the servlet and to the applet
        InputStream in = request.getInputStream();
        ObjectInputStream inputFromApplet = new ObjectInputStream(in);
        GameInfo score = (GameInfo) inputFromApplet.readObject();
        System.out.println(score.getScore());

        GameInfo info = score;

        if (info.getUserId() > 0) {
            Scores instance = new Scores();
            instance.submitScore(info);
        }

        OutputStream outstr = response.getOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(outstr);
        oos.writeObject("reply");
        oos.flush();
        oos.close();
    } catch (ClassNotFoundException ex) {
    }
}

感谢您的帮助,请原谅我花了太长时间才回复。

I have managed to make it work.

This is the code for the applet:

    private URLConnection getServletConnection()
        throws MalformedURLException, IOException {
    URL urlServlet = new URL("http://localhost:8080/GamePortal/submitScore");
    URLConnection con = urlServlet.openConnection();
    con.setDoOutput(true);
    con.setRequestProperty(
            "Content-Type",
            "application/x-java-serialized-object");
    return con;

}

private void onSendData(GameInfo info) {

    try {
        // send data to the servlet
        URLConnection con = getServletConnection();
        OutputStream outstream = con.getOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(outstream);
        oos.writeObject(info);
        oos.flush();
        oos.close();
        // receive result from servlet
        InputStream instr = con.getInputStream();
        ObjectInputStream inputFromServlet = new ObjectInputStream(instr);
        String result = (String) inputFromServlet.readObject();
        //JOptionPane.showMessageDialog(null, result);
        inputFromServlet.close();
        instr.close();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

This is the code for the servlet:

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {        
    try {
        response.setContentType("application/x-java-serialized-object");
        // read a String-object from applet
        // instead of a String-object, you can transmit any object, which
        // is known to the servlet and to the applet
        InputStream in = request.getInputStream();
        ObjectInputStream inputFromApplet = new ObjectInputStream(in);
        GameInfo score = (GameInfo) inputFromApplet.readObject();
        System.out.println(score.getScore());

        GameInfo info = score;

        if (info.getUserId() > 0) {
            Scores instance = new Scores();
            instance.submitScore(info);
        }

        OutputStream outstr = response.getOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(outstr);
        oos.writeObject("reply");
        oos.flush();
        oos.close();
    } catch (ClassNotFoundException ex) {
    }
}

Thanks for your help and forgive me for taking too long to reply.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文