跳转到路径导航栏
跳转到正文内容

使用 C# 创建 Windows 服务

http://www.sina.com.cn  2008年07月11日 13:07  IT168.com
在Windows服务里面,如果访问文件,采用绝对路径可以.如果采用相对路径,和生成的服务文件在同一目录下面.则要访问此程序集 下面的文件.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Xml;
using System.IO;
namespace HDUSearch
...{
public  class IndexConfig
...{
GetValue#region GetValue
public string GetValue(string key)
...{
string assemblyFilePath = Assembly.GetExecutingAssembly().Location;
string assemblyDirPath = Path.GetDirectoryName(assemblyFilePath);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(assemblyDirPath + "\Index.config");
XmlNodeList nodeList = xmlDoc.SelectSingleNode("/configuration/appSettings").ChildNodes;   //获取appSettings节点的所有子节点   
           foreach (XmlNode xn in nodeList)   //遍历所有子节点   
           ...{
XmlElement xe = (XmlElement)xn;   //将子节点类型转换为XmlElement类型   
               if (xe.GetAttribute("key").IndexOf(key) != -1)
...{
return xe.GetAttribute("value");
break;
}
}
return "";
}
#endregion
}
}

已有_COUNT_位网友发表评论  我要评论

Powered By Google ‘我的2008’,中国有我一份力!
·城市对话改革30年 ·新浪城市同心联动 ·诚招合作伙伴 ·企业邮箱畅通无阻

新浪简介About Sina广告服务联系我们招聘信息网站律师SINA English会员注册产品答疑┊Copyright © 1996-2008 SINA Corporation, All Rights Reserved

新浪公司 版权所有