全部博文(2065)
分类: 系统运维
2008-11-14 13:27:57
/test.jsp:22: ~
0&?
&? 叵 clientip
Mn { _jsp._test__jsp
out.println(clientip);
^
/test.jsp:27: ~
0&?
&? 叵 clientip
Mn { _jsp._test__jsp
out.print((clientip));
^
/test.jsp:27: ^?{?
?
out.print((clientip));
^
3 ?
很烦人的问题出现了。如何来解决呢?
我们先一步一步来注释试试看吧:
<%String serverip = null;
String clientip = null;
try {
InetAddress inet = InetAddress.getLocalHost();
serverip = inet.getHostAddress();
} catch(Exception e) {
System.out.println(e.toString());
}
try{
clientip = IPUtil.getIpAddress(request);
}catch(Exception e){
System.out.println(e.toString());
}
out.println(serverip);
如果在上面没有声明clientip的话就会报上面的错了。
这个Resin是怎么一回事呢?
有时间我一定要好好研究研究一下这个resin服务器了。居然给我报这种错误让我难以接受。
真的痛苦了一个上午。
好了,现在运行正常了。
也让我明白了,做任何事情要静下心好好想想问题的所在。而不是一谓的担心害怕错误!