Topic: 在服务器class中如何获取访问者的IP地址啊? |
Print this page |
1.在服务器class中如何获取访问者的IP地址啊? | Copy to clipboard |
Posted by: hafocus Posted on: 2006-06-02 16:12 我的类不是extends HttpServlet 可是我要在类中得到客户的IP地址? 有什么办法吗? package psdi.app.signature; import java.rmi.RemoteException; import psdi.mbo.Mbo; import psdi.mbo.MboSet; import psdi.server.MXServer; import psdi.util.MXApplicationException; import psdi.util.MXException; // Referenced classes of package psdi.app.signature: // LoginTrackingRemote public class LoginTracking extends Mbo implements LoginTrackingRemote { public LoginTracking(MboSet mboset) throws MXException, RemoteException { super(mboset); } public void init() throws MXException { super.init(); if(!toBeAdded()) setFlag(7L, true); } public void add() throws MXException, RemoteException { super.add(); setValue("attemptdate", MXServer.getMXServer().getDate(), 11L); setValue("keyvalue1", "ip地址", 11L); //这里得不到IP地址。 } public void canDelete() throws MXException, RemoteException { throw new MXApplicationException("access", "notauthorized"); } } |
2.Re:在服务器class中如何获取访问者的IP地址啊? [Re: hafocus] | Copy to clipboard |
Posted by: tiger_hlq Posted on: 2008-09-12 10:59 request.getRemoteAddr(); |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |