ASP读取ini文件

来源:聚友 时间:2010-01-20 11:17:00 

INI是微软Windows操作系统中的文件扩展名。这些字母表示初始化。正如该术语所表示的,INI文件被用来对操作系统或特定程序初始化或进行参数设置。ini文件可以存储很多数据,用来配置应用软件以实现不同用户的要求,那如何用ASP来读取ini文件呢?聚友提供一段代码,可以通过这段代码来实现读取ini文件,代码如下:


<%   
  set   IniFileDictionary   =   CreateObject("Scripting.Dictionary")   
    
  Sub   IniFileLoad(ByVal   FilSpc)   
      IniFileDictionary.RemoveAll   
      FilSpc   =   lcase(FilSpc)   
      if   left(FilSpc,   1)   =   "p"   then   
          'Physical   path   
          PhyPth   =   mid(FilSpc,   instr(FilSpc,   "=")   +   1)   
      else   
          'Virtual   path   
          PhyPth   =   Server.MapPath(mid(FilSpc,   instr(FilSpc,   "=")   +   1))   
      end   if   
    
      set   FilSys   =   CreateObject("Scripting.FileSystemObject")   
      set   IniFil   =   FilSys.OpenTextFile(PhyPth,   1)   
      do   while   not   IniFil.AtEndOfStream   
          StrBuf   =   IniFil.ReadLine   
          if   StrBuf   <>   ""   then   
              'There   is   data   on   this   line   
              if   left(StrBuf,   1)   <>   ";"   then   
                  'It's   not   a   comment   
                  if   left(StrBuf,   1)   =   "["   then   
                      'It's   a   section   header   
                      HdrBuf   =   mid(StrBuf,   2,   len(StrBuf)   -   2)   
                  else   
                      'It's   a   value   
                      StrPtr   =   instr(StrBuf,   "=")   
                      AltBuf   =   lcase(HdrBuf   &   "|"   &   left(StrBuf,   StrPtr   -   1))   
                      do   while   IniFileDictionary.Exists(AltBuf)   
                          AltBuf   =   AltBuf   &   "_"   
                      loop   
                      IniFileDictionary.Add   AltBuf,   mid(StrBuf,   StrPtr   +   1)   
                  end   if   
              end   if   
          end   if   
      loop   
      IniFil.Close   
      set   IniFil   =   nothing   
      set   FilSys   =   nothing   
  End   Sub   
    
  Function   IniFileValue(ByVal   ValSpc)   
      dim   ifarray   
      StrPtr   =   instr(ValSpc,   "|")   
      ValSpc   =   lcase(ValSpc)   
      if   StrPtr   =   0   then   
          'They   want   the   whole   section   
          StrBuf   =   ""   
          StrPtr   =   len(ValSpc)   +   1   
          ValSpc   =   ValSpc   +   "|"   
          ifarray   =   IniFileDictionary.Keys   
          for   i   =   0   to   IniFileDictionary.Count   -   1   
              if   left(ifarray(i),   StrPtr)   =   ValSpc   then   
                  'This   is   from   the   section   
                  if   StrBuf   <>   ""   then   
                      StrBuf   =   StrBuf   &   "~"   
                  end   if   
                  StrBuf   =   StrBuf   &   ifarray(i)   &   "="   &   IniFileDictionary(ifarray(i))   
              end   if   
          next   
      else   
          'They   want   a   specific   value   
          StrBuf   =   IniFileDictionary(ValSpc)   
      end   if   
      IniFileValue   =   StrBuf   
  End   Function   
  %> 

将上面的代码保存为inifile.asp,用如下样子的代码来读取ini,

<!--#include file="inifile.asp"-->  
<%
call IniFileLoad("test.ini")
' 设定包含文件的存放路径
StrBuf = IniFileValue("OEMFiles|OEMDriverFile1")
response.write strbuf & now()
%> 

标签:ini,asp,读取文件
0
投稿

猜你喜欢

  • MySQL两种表存储结构性能比较测试过程

    2007-12-09 12:45:00
  • CSS兼容IE6,IE7,FF的技巧

    2010-04-01 12:34:00
  • XMLHttpRequest的浏览器兼容代码写法

    2008-09-02 10:46:00
  • 形成视觉冲击的几种方式

    2008-08-03 15:57:00
  • 眼未动,心已动【碳酸饮料会】

    2009-09-01 19:32:00
  • ASP将Excel数据导入到SQLServer的实现代码

    2011-03-10 10:38:00
  • XML 增、删、改和查示例

    2008-09-05 17:12:00
  • 显示你个性的鼠标指针

    2011-06-14 09:41:41
  • 安装SQL Server 2005时出现计数器错误

    2008-11-28 14:19:00
  • 用文本+ASP打造新闻发布系统

    2009-02-02 09:31:00
  • WEB前端开发经验总结

    2009-07-20 18:01:00
  • 自动定时备份sqlserver数据库的方法

    2011-11-03 17:28:17
  • Oracle客户端 NLS_LANG 的设置方法

    2012-07-11 15:55:27
  • 基于AJAX技术提高搜索引擎排名

    2008-01-24 12:45:00
  • js检查全角字符正则表达式[\\uFE30-\\uFFA0]

    2008-10-30 12:39:00
  • mysql查询一天,查询一周,查询一个月的数据

    2011-01-29 16:22:00
  • oracle & mysql 多实例启动区别

    2011-02-23 12:28:00
  • JavaScript中的"类" 序言

    2008-02-18 13:26:00
  • oracle SQL解析步骤小结

    2009-09-30 10:46:00
  • 2009年五一劳动节logo欣赏

    2009-05-02 18:26:00
  • asp之家 网络编程 m.aspxhome.com