1. 程式人生 > >JSP中獲取properties文件屬性

JSP中獲取properties文件屬性

util port char rip text request taglib test 文件屬性

<%@ page contentType="text/html;charset=UTF-8" import="java.util.ResourceBundle"%>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<%
    String path = request.getContextPath();
    // properties 配置文件名稱
    ResourceBundle res = ResourceBundle.getBundle("test");
%>
<html>
<
head> <script> var name=<%=res.getString("name")%>; </script> </head> <body> </body> </html>

test為properties文件 , test.properties , name 為test中的一個屬性名稱

JSP中獲取properties文件屬性