/*
获取Oracle服务名
1. Il s'agit d'un oracle.
Fichier : HKEY_LOCAL_MACHINESOFTWAREORACLEORACLE_HOME REG_SZ E:ORACLEORA92
Le système Oracle est basé sur networkADMINtnsnames.ora
2.解析该文件,该文件结构如
# ------------------------------------------------
PORTAIL =
(DESCRIPTION =
(ADDRESS_LIST =
(ADRESSE = (PROTOCOLE = TCP)(HÔTE = 134.104.52.6)(PORT = 1521))
)
(CONNECT_DONNÉES =
(SERVICE_NAME = portail)
)
)
3.解析要点:
一行一行获取再解析
跳过以#打头的注释行
过滤掉空格后,首字符在A~z之间的行就包含了Oracle服务名
截取该行第一个« = »号左边的字符串,trim处理后就是Oracle服务名了
*/
chaîne statique publique[] GetOracleTnsNames()
{
essayer
{
// 查询注册表,获取oracle服务文件路径
Clé RegistryKey = Registry.LocalMachine.OpenSubKey("LOGICIEL").OpenSubKey("ORACLE");
string home = (string)key.GetValue("ORACLE_HOME");
fichier de chaîne = home + @"networkADMINtnsnames.ora";
// 解析文件
ligne de ficelle ;
ArrayList arr = new ArrayList();
StreamReader sr = new StreamReader(fichier);
while ((line = sr.ReadLine()) != null)
{
line = line.Trim();
si (ligne != "")
{
char c = ligne[0];
si ( c>= 'A' && c<='z')
arr.Add(line.Substring(0, line.IndexOf(' ')));
}
}
sr.Close();
// 返回字符串数组
return (string[])arr.ToArray(typeof(string));
}
attraper (Exception ex)
{
renvoie null ;
}
}
http://www.cnblogs.com/surfsky/archive/2006/08/29/489682.html