通信/传输 java 类输出值到 jsp 中的文本字段
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 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
这是最简单的方法。
不要忘记在 jsp 的开头导入 java.net.InetAddress:(
如果您使用自定义标记库,则取决于您的标记库。)
Here is the simplest way.
Do not forget to import java.net.InetAddress in the beginning of your jsp:
(If you are using custom tag libraries it depends on your tag library.)