1.jsp页面传参

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

    <head>

<%

String url=request.getParameter("url");

String fileName=request.getParameter("fileName");

request.setAttribute("url",url);

request.setAttribute("fileName",fileName);

 %>

    </head>

    <body>

<center>

       <applet code="JoinconfApplet.class" archive="econference.jar" name="econf"

           width="0" height="0" MAYSCRIPT>

           <PARAM NAME="url" VALUE="${url }">

           <PARAM NAME="fileName" VALUE="${fileName }">

       </applet>

</center>

    </body>

</html>

2.java applet接受参数

        String url = getParameter("url");
        String fileName = getParameter("fileName");

相关文章:

  • 2021-09-07
  • 2021-12-24
  • 2021-04-30
  • 2022-12-23
  • 2021-10-07
  • 2021-06-13
  • 2022-12-23
猜你喜欢
  • 2021-04-06
  • 2022-12-23
  • 2021-11-07
  • 2021-05-22
  • 2021-10-16
  • 2022-01-31
  • 2021-10-21
相关资源
相似解决方案