通信/传输 java 类输出值到 jsp 中的文本字段

发布于 2024-10-07 15:25:35 字数 287 浏览 0 评论 0原文

我有一个java类ipaddr程序,它保存本地主机的IP地址......而另一个是loginpage.jsp......我需要包含java 类 ipaddr 输出在隐藏文本字段中,它将获取 IP 地址以及用户名和密码...任何人都可以用简单的解释 源代码...如何将java类输出值传递到jsp中的文本字段...或如何将ipaddr程序的值导入到jsp页面 感谢您抽出时间, 问候, 老兄

i got a java class ipaddr program which holds the ip address of a local host.... and other is a loginpage.jsp... i need to include the java
class ipaddr output in a hidden text field which wil fetch the ip address along with username and password...can anyone explain with a simple
source code...how to communicate a java class output value to a text field in jsp...or how to import the value of ipaddr program to jsp page
thanks for ur time,
regards,
dude

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

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

发布评论

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

评论(2

那一片橙海, 2024-10-14 15:25:35

如果 IPAddress 是动态的[即在运行时提取],则可以声明一个实例方法,该方法返回 IpAddress

如果 IPAddress 是静态的,则将其声明为公共静态变量,

之后可以在 JSP 中直接调用该值

If IPAddress is dynamic[i.e, which is extracted during run time ] you can declare a instance method, which returns IpAddress

If IPAddress is static, declare it as public static variable

After which the value can be called directly in JSP

亽野灬性zι浪 2024-10-14 15:25:35

这是最简单的方法。

<input type="hidden" value="<%=InetAddress.getLocalHost()%>"/>

不要忘记在 jsp 的开头导入 java.net.InetAddress:(

<%@ page import="java.net.InetAddress;" %>

如果您使用自定义标记库,则取决于您的标记库。)

Here is the simplest way.

<input type="hidden" value="<%=InetAddress.getLocalHost()%>"/>

Do not forget to import java.net.InetAddress in the beginning of your jsp:

<%@ page import="java.net.InetAddress;" %>

(If you are using custom tag libraries it depends on your tag library.)

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