博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSP中利用Properties读写配置文件
阅读量:4647 次
发布时间:2019-06-09

本文共 3567 字,大约阅读时间需要 11 分钟。

JSP中利用Properties读写配置文件  

java 代码:

package com.reason.test;

import java.io.File;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Properties;

public class Test {

public static void writeProperties(String filePath, String parameterName,

    String parameterValue) {
   Properties props = new Properties();
   try {
    File f = new File(filePath);

    if (f.exists()) {

     InputStream fis = new FileInputStream(filePath);

     props.load(fis);
     fis.close();

    } else {

     System.out.println(filePath);
     f.createNewFile();
    }

    OutputStream fos = new FileOutputStream(filePath);

    props.setProperty(parameterName, parameterValue);

    props.store(fos, "");

    fos.close();
   } catch (IOException e) {
    e.printStackTrace();
   }
}

public static Properties readProperties(String filePath) {

   Properties props = new Properties();
   InputStream is;
   try {
    is = new FileInputStream(filePath);
    props.load(is);
    is.close();
    return props;
   } catch (Exception e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    return null;
   }

}

public static void main(String[] args) {

   Test t = new Test();

   t.writeProperties("c:/1.properties", "name", "tom");

}

}

JSP:index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="utf8"%>

<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
    + request.getServerName() + ":" + request.getServerPort()
    + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
   <base href="<%=basePath%>">

   <title>My JSP 'index.jsp' starting page</title>

   <meta http-equiv="pragma" content="no-cache">
   <meta http-equiv="cache-control" content="no-cache">
   <meta http-equiv="expires" content="0">
   <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
   <meta http-equiv="description" content="This is my page">
   <!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>

<body>

   <form action="writeProperties.jsp">
    key :
    <input type="text" name="key" />
    value :
    <input type="text" name="value" />
    <input type="submit" value="提交" />
   </form>
</body>
</html>

 

jsp: 功能实现页面

<%@ page language="java" import="java.util.*" pageEncoding="utf8"%>

<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
    + request.getServerName() + ":" + request.getServerPort()
    + path + "/";
%>
<jsp:useBean id="test" type="com.reason.test.Test" scope="request"
/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <base href="<%=basePath%>">

   <title>My JSP 'writeProperties.jsp' starting page</title>

   <meta http-equiv="pragma" content="no-cache">

   <meta http-equiv="cache-control" content="no-cache">
   <meta http-equiv="expires" content="0">
   <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
   <meta http-equiv="description" content="This is my page">
   <!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
   <%
    String key = request.getParameter("key");
    String value = request.getParameter("value");
    String filepath = request.getSession().getServletContext()
      .getRealPath("/")
      + "properties1.properties";
    test.writeProperties(filepath, key.trim(), value);
    Properties props = test.readProperties(filepath);

    Enumeration en = props.elements();

    while (en.hasMoreElements()) {
     String tmpKey = (String) en.nextElement();

     String tmpvalue = (String) props.getProperty(tmpKey);

   %>
   key : <%=tmpKey%>
   value: <%=tmpvalue%><br>
   <%
    }
   %>
</head>

<body>

</body>

</html>

转载于:https://www.cnblogs.com/shsgl/p/3918816.html

你可能感兴趣的文章
蓝桥杯 矩阵乘法 模板
查看>>
iOS_SourceTree忽略CocoaPods文件
查看>>
novoton-timer使用
查看>>
[Office]PPT 2013如何设置图片为半透明?
查看>>
返回顶部
查看>>
Log4cplus <1> 编译
查看>>
TaskTracker发送Heartbeat以及接受HeartbeatResponse
查看>>
Java集合类--温习笔记
查看>>
Struts2中的bean标签
查看>>
JVM 性能调优实战之:使用阿里开源工具 TProfiler 在海量业务代码中精确定位性能代码...
查看>>
Hibernate(六)一对多映射(多对一)
查看>>
进程池-限制同一时间在CPU上运行的进程数
查看>>
HDU - 3001 Travelling
查看>>
kafka笔记-Kafka在zookeeper中的存储结构【转】
查看>>
【bzoj2402】陶陶的难题II 分数规划+树链剖分+线段树+STL-vector+凸包+二分
查看>>
[Javascript] 前端随笔
查看>>
【GIT】git 删除本地分支和远程分支、本地代码回滚和远程代码库回滚
查看>>
MFC【exe】工程中的文件大致信息(翻译的)
查看>>
生成网上下载的EF项目对应的数据库
查看>>
ubuntu下搭建cocos2dx编程环境-上
查看>>