Files.java
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2.  * Created on 2004-9-18
  3.  *
  4.  * To change the template for this generated file go to
  5.  * Window>Preferences>Java>Code Generation>Code and Comments
  6.  */
  7. package oa.sys;
  8. import java.io.*;
  9. import java.util.*;
  10. /**
  11.  ****************************************************
  12.  *类名称: Files<br>
  13.  *类功能: 获取文件操作<br>
  14.  *创建: 白伟明 2004年9月23日<br>
  15.  ****************************************************
  16.  * To change the template for this generated type comment go to
  17.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  18.  */
  19. public class Files {
  20. Properties prop=new Properties();
  21. private String name=null;
  22. private String password=null;
  23. private String error=null;
  24. /***************************************************
  25. *函数名称: Files()<br>
  26. *函数功能: 获取属性文件<br>
  27. *返回值:   无<br>
  28. *参数说明: path 文件路径<br>
  29. *创建: 白伟明 2004年9月22日
  30. ****************************************************/
  31. public Files(String path){
  32. try{
  33. File file=new File(path+"WEB-INF\admin.properties");
  34. if(file.canRead()){
  35. FileInputStream infile=new FileInputStream(file);
  36. prop.load(infile);
  37. name=prop.getProperty("name");
  38. password=prop.getProperty("password");
  39. prop.clear();
  40. infile.close();
  41. }else{
  42. error=file.getPath()+"没找到文件";
  43. }
  44. }catch(Exception e){
  45. }
  46. }
  47. public String getName(){
  48. return name;
  49. }
  50. public String getPassword(){
  51. return password;
  52. }
  53. public String getError(){
  54. return error;
  55. }
  56. }