JSPCN主页 | JSP空间 | 网站制作 | JSP下载 | JSP论坛 | JSP教程 | 关于JSPCN | 联系我们
JSP虚拟主机,jsp空间,java空间,java虚拟空间,详细请点击进入
做最专业的JSP中文网站 当前位置首页--JSP技术--JSP实例  
文章搜索:
关键字 标题
  
JSP中文网内容管理系统(JCMS)
JSP虚拟主机
网络笔记本
网摘,图片,笔记收藏
虚拟服务器

JSPCN文章目录分类
JSP配置[219]JSP基础[136]
中文问题[69]上传问题[27]
JAVABEAN[46]数据库[212]
文件操作[126]图片声音[17]
JSP其他[57]时间相关[16]
JAVAMAIL[72]STRUTS[144]
开发工具[28]教程系列[157]
JSP实例[89]
JAVA基础[421]APPLET[78]
JAVA网络[179]Applica[115]
Servlet[98]XML[163]
J2ME[257]J2EE[374]
考试相关[63]JAVA线程[90]
EJB[261]Swing[26]
Java API[141]声音图片[28]
异常处理[33]JAVA实例[290]
JAVA类[139]SUN[89]
Hibernate[6]JMX[8]
Spring[34]
本版推荐文章 
本版热点文章 
相关文章链接 
 
jsp中读取远程机器的Properties文件和ip地址
作者:未知     文章来源:www.jspcn.net
访问次数:2387次     加入时间:2005年01月19日
This servlet could be used for basic security in servlet.
When you want to limit the computers that can call a specific servlet.
You read the valid IP address from a properties file.
The IP of the computer calling the servlet (static IP) is compared with value in the property file.

If the values are the same then it is called from the correct computer.
Otherwise a message is displayed showing the error.

For demonstration purposes the IP Addresses are displayed.

Save the file as GetIPAddressServlet.java

Create text file called readip.props
Inside the file type:
ip=xxx.xxx.xx.xx
replace the ´x´ with the actual IP address you want to store. This will be used to compare with the IP address of the computer calling the servlet.

Copy the readip.props file into a directory which the servlet will be able to find. For example, c:winntsystem32

Compile the servlet.
javac GetIPAddressServlet.java

Copy the servlet class file into the servlet directory on the webserver (read vendor´s documentation).

Call the servlet http://localhost/GetIPAddressServlet
and it should display the IP addresses and the results of the comparison.


import java.io.*;
import java.lang.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;


public class GetIPAddressServlet extends HttpServlet
{
protected void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{

response.setContentType("text/html");
ServletOutputStream out = response.getOutputStream();
out.println("<HTML><HEAD><TITLE>");
out.println("Get IP Address Servlet");
out.println("</TITLE></HEAD>");
out.println("<BODY>");

// Read properties file.
Properties properties = new Properties();
try
{
properties.load(new FileInputStream("readip.props"));
}
catch(IOException e)
{
e.printStackTrace();
}
String ipAddress = "";
String remoteIPAddress = "";
// Read the value of key - ip
ipAddress = properties.getProperty("ip");

out.println("ip address (from properties file) =" + ipAddress);
out.println("
");
// read the (remote) IP address of the requesting computer
remoteIPAddress = request.getRemoteAddr();
request.
out.println("remote ip address =" + remoteIPAddress);
out.println("
");

if (ipAddress.equals(remoteIPAddress))
{
out.println("Same IP Address");
}
else
{
out.println("Sorry, this is not the same IP Address");
}

out.println("</BODY></HTML>");
out.close();

}
} 
JSP虚拟主机 | JSP空间 | JSP主机 | JSP双线虚拟主机 | JAVA空间 | JAVA虚拟主机 | 虚拟服务器 | JSP 虚拟服务器 | VPS
Virtual Private Server | JAVA虚拟服务器 | VM服务器 | VHOST | 虚拟操作系统 | JSP论坛 | JAVA论坛 | JSP站点论坛
Copyright © 2002-2005 JSPCN.net. All rights reserved.
JSP中文网    备案序号:蜀ICP备05001583号
成都恒海科技发展有限公司    成都市一环路南二段6号新瑞楼三楼8号