快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

JSP中读取远程机器的PROPERTIES文件和IP地址

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();

}
} 
返回类别: 教程
上一教程: JBUILDER2005实战JSP之登录页面(2)
下一教程: JAVA基础知识(3)

您可以阅读与"JSP中读取远程机器的PROPERTIES文件和IP地址"相关的教程:
· JSP中读文件和写文件的例子
· JAVA,JSP,JAVASCRIPT中如何实现将统计表格保存成EXCEL文件
· 一个读取文件和子目录列表的程序
· 从数据库中读取一个图片并保存为一个图片文件
· 用JSP从数据库中读取图片并显示在网页上
    微笑服务 优质保证 索取样品