zoukankan      html  css  js  c++  java
  • C# INI配置文件

    直接新建个程序集或类,你也可以自己改下,可直接调用。

    using System;
    using System.Runtime.InteropServices;
    using System.Text;
    using System.IO;


    namespace Ytu_CallCenter
    {
    /// <summary>
    /// Summary des cription for Class1.
    /// </summary>
    public class IniFile
    {
    //INI文件的名称
    public string Path;

    //在这里声明读写INI文件的API函数 
    [DllImport("kernel32")]

    private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);

    [DllImport(
    "kernel32")]

    private static extern int GetPrivateProfileString(string section,string key,string def,StringBuilder retVal,int size,string filePath);


    //类的构造函数,传递INI文件名
    public IniFile(string inipath)
    {
    Path 
    = inipath;
    }

    //写INI文件
    public void IniWriteValue(string Section,string Key,string Value)
    {
    WritePrivateProfileString(Section,Key,Value,
    this.Path);
    }

    public string IniReadValue(string Section,string Key)
    {
    StringBuilder temp 
    = new StringBuilder(255);
    int i = GetPrivateProfileString(Section,Key,"",temp,255,this.Path);
    return temp.ToString();
    }
    }
    }

    操作范例:

    public static SqlConnection  INIConnection()
    {
    string sPath,ServerName,userId,sPwd,DataName;
    sPath 
    = GetPath();
    IniFile ini 
    = new IniFile(sPath);
    ServerName 
    = ini.IniReadValue ("Database","server");
    userId 
    = ini.IniReadValue ("Database","uid");
    sPwd 
    = ini.IniReadValue ("Database","pwd");
    DataName 
    = ini.IniReadValue ("Database","database");
    string strSql = "server =" + ServerName+";uid ="+ userId +";pwd =;database ="+ DataName;
    SqlConnection myConn
    =new SqlConnection(strSql);
    return myConn; 
    }

  • 相关阅读:
    #3.14 Piday#我的圆周率日
    FUI- 我离钢铁侠还差几步?
    POJ 3617 Best Cow Line (贪心)
    POJ 2386 Lake Counting (水题,DFS)
    POJ 1852 Ants (等价思考)
    CCF 201403-3 命令行选项 (STL模拟)
    CCF 201403-2 窗口 (STL模拟)
    CCF 201403-1 相反数 (水题)
    CCF 201312-4 有趣的数 (数位DP, 状压DP, 组合数学+暴力枚举, 推公式, 矩阵快速幂)
    CCF 201312-3 最大的矩形 (暴力,离散化)
  • 原文地址:https://www.cnblogs.com/weiling/p/1688751.html
Copyright © 2011-2022 走看看