jsp加载配置文件|如何在JSP页面引用配置文件的常量值

|

A. java里如何添加自定义的配置文件,jsP里去读取参数

java里可以再在resources里面新建一个XML file或者 file文件XML file 会自动生成XML头,在下面加入内容就可以了,首先要有一个根节点,然后如果需要用到一些类,如:spring的一些类,就需要引入包,如:<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"><context:component-scan base-package="com.dist.*.controller" /> </beans >其中<?xml ……就是头,<beans 是根节点,下面的<content:……是内容。如果添加的事properties文件,格式如下:# 连接池配置pool.size = 2pool.max = 50然后jsp调用读取xml文件的方法去读取自重的内容就可以了。

B. jsp怎么获取spring配置文件properties中的信息

先定义Config.java类,把所有的properties属性定义好,然后spring启动的时候加载到内存,在jsp中导入这个类,实例化一下就可以用实例.属性名获取对应属性了

C. 如何设计jsp页面读取配置文件

package com.ydq.read.propertyfile; 2. 3.import java.io.InputStream; 4.import java.util.MissingResourceException; 5.import java.util.Properties; 6.import java.util.ResourceBundle; 7. 8./** 9. * 读取配置文件中的参数 10. * 11. * 一般情况下,首页的内容是比较比较多,但内容结构大多也有本同的地方,比方说某几块内容都是展示的文章,只是文章来源的类别不同,或者说某几个版面都展示商品, 12. * 只是商品所属分类不同罢了,那么我们在后台取数据时,都需要根据类别ID来取值的。一般做法都是把这些不同的来源ID在代码中写好,这种做法又分为以下三种情况: 13. * 14. * 1、前台写死ID,通过<jsp:include page="xx.do?id=xx">,可以进行动态的包含内容。 15. * 16. * 2、可在service层写一个id的数组,String[] ids = 17. * {“”,"",""};用ids数组的下标来获得id值,这样也可以实现,如果数据库的ID值发生改变,只需要改变service层的ID数组就行。 18. * 19. * 3、用配置文件(这个配置文件以.properties结尾)。将ID值写在配置文件中,表示的方法就和map一样,key=value,这样就OK。 20. * 21. * 下面我要说的是第三种方案,个人觉得第三种方案比第二种方案好,因为第二种方案改数据时,去找的话,有点不太方便。 22. * 23. * @author 姚大庆 24. * 25. */ 26.public class CommonParam { 27. 28. private String propertyFileName; 29. private ResourceBundle resourceBundle; 30. 31. public CommonParam() { 32. propertyFileName = "ydqfile"; 33. resourceBundle = ResourceBundle.getBundle(propertyFileName); 34. } 35. 36. public String getString(String key) { 37. if (key == null || key.equals("") || key.equals("null")) { 38. return ""; 39. } 40. String result = ""; 41. try { 42. result = resourceBundle.getString(key);// 根据key获取value 43. } catch (MissingResourceException e) { 44. e.printStackTrace(); 45. } 46. return result; 47. } 48. 49. public static void main(String[] args) { 50. /* 51. * 方法一:直接通过java.util.ResourceBundle读取配置文件 52. * CommonParam test = new CommonParam(); 53. * System.out.println(test.getString("ydqa")); 54. * System.out.println(test.getString("ydqb")); 55. * System.out.prwww.hnne.comintln(test.getString("ydqc")); 56. */ 57. 58. /* 59. * 方法二:通过java中java.util.Properties对象读取配置文件 60. * */ 61. CommonParam test = new CommonParam(); 62. System.out.println(test.getPara("ydqfile.properties")); 63. 64. } 65. 66. /** 67. * 学习JAVA中java.util.Properties对象读取配置文件 68. * @param fileName 配置文件名 69. * @return 根据key返回value 70. */ 71. public String getPara(String fileName) { 72. Properties prop = new Properties(); 73. try { 74. InputStream is = this.getClass().getClassLoader().getResourceAsStream(fileName); 75. prop.load(is); 76. if (is != null) 77. is.close(); 78. } catch (Exception e) { 79. System.out.println(e + " file " + fileName + " not found"); 80. } 81. return prop.getProperty("ydqb"); 82. }

D. jsp里可以读取.properties配置文件吗可以的话怎么读取求详解。

可以.java提供了java.uitl.Properities这个类去调用这类文件专的属。Properties p = new Properties(); p.load(ZCloudServiceImpl.class.getResourceAsStream("/config/config.properties")); OutputStream fos = new FileOutputStream(A.class.getResource("/config/config.properties").getPath()); p.setProperty("zCloud.primaryNode", value); p.store(fos, "");

E. 如何在jsp中读取配置文件的内容

<%Properties pro = new Properties();pro.load(new FileInputStream((c:/jdbc.properties")));//配置文件路径db_userName = pro.getProperty("db_userName");db_password = pro.getProperty("db_passWord");%>之后自己用eclipse或者IDEA加try catch

F. jsp怎么通过数据库配置文件连接数据库急急急 在线等!

假设有一个连接数据库的属性配置文件jdbc.properties,文件内容如下:jdbc.driver=com.microsoft.jdbc.sqlserver.SQLServerDriverjdbc.url=jdbc:microsoft:sqlserver://10.0.0.168:1433;jdbc.username=sajdbc.password=sajndi.databaseName=northwind那么如何使用配置文件呢?其实很简单我们创建如下类:/** Created on 2005-8-15*This class is created to test the using of the properties file* TODO To change the template for this generated file go to* Window – Preferences – Java – Code Style – Code Templates*/package zy.pro.wd.demo;import java.io.FileInputStream;import java.util.Properties;public class PropertiesDemo {/****/public PropertiesDemo() {super();// TODO Auto-generated constructor stub}public void testPropertiesFile(){try{Properties pro = new Properties();pro.load(new FileInputStream("src/jdbc.properties"));System.out.println(pro.getProperty("jdbc.driver"));System.out.println(pro.getProperty("jdbc.url"));}catch(Exception e){e.printStackTrace();}}public static void main(String[] args) {PropertiesDemo pd=new PropertiesDemo();pd.testPropertiesFile();}}粗体部分是主要部分,通过load()方法来加载配置文件,然后通过getProperty()方法来取得配置文件中的属性。注意:取得配置文件的相对路径一定要正确,否则,将会抛出找不到文件的异常。我的配置文件路径如下图:程序输出结果如下:com.microsoft.jdbc.sqlserver.SQLServerDriverjdbc:microsoft:sqlserver://10.0.0.168:1433;此程序在Eclipse3.0下调试通过。

G. jsp页面可以做为配置文件吗

可以 只要是文件就可以

H. web-inf下的jsp页面怎么配置文件

首先,对于外部访问来说,web-inf下的文件都是不可见的(即不能通过url获得web-info下的任何文件),所内以,直接访问jsp是不可容能的。这要从web-info文件夹的作用说起:WEB-INF的存在以及其下的lib和classes目录的作用都是jsp规定的,主要是系统运行的配置信息和环境,用来存储服务端配置文件信息和在服务端运行的类文件,它下面的东西不允许客户端直接访问的,这是jsp环境的规定。而我们通常是使用view层框架(如struts)来提供jsp服务,此时,我们可以将jsp文件放到web-info下避免客户直接访问到页面,同时使用struts来进行jsp文件提取,并将编译好的结果发送到客户端。

I. 如何在JSP页面引用配置文件的常量值

用ResourceBundle读取properties文件,然后getString()根据key取得你要的value就行。这个操作推荐在某个Servlet或Filter的init()方法里做,然后把值回存到application属性范围,答这样页面用起来更方便,而且性能更高,省得每次访问页面重新读


赞 (0)