Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用返回当前登录用户的方法从已部署的小程序中检索字符串数据。
如何使用小程序方法返回填充同一页面上的 Java 字符串变量?
<applet width=1 height=1 code="com.myapp.struts.getLogin.class"></applet> <% String userName = "APPLET RETURN VALUE" %>
JSP scriptlet 在服务器端进行评估。小程序在客户端执行。
所以这是做不到的。您将需要一些其他机制来交换此信息。
例如,您可以考虑从您的小程序建立网络连接并返回到它来自的同一台服务器。例如,来自 applet 的 HTTP 请求将所需信息 POST 回您的服务器。