各位, 我想要做个配置文件, 可以让一个应用程序EXE,来读取某个值,向大家请教下具体的步骤。

解决方案 »

  1.   

    在项目中添加应用程序配置文件,在程序中使用 System.Configuration.ConfigurationManager.AppSettings();读取值!
    不知道你是要这个意思吗?
      

  2.   

    在项目中新建一个xml文件,命名成为app.config。然后用System.Configuration.ConfigurationManager就可以了。
    例如我在处理连接数据库的连接字符串就可以采用这样的方法
    在app.config中编写下列代码
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <configSections>
      </configSections>
      <connectionStrings>
        <add name="SqlConnectionString"
            connectionString="Data Source=.;Initial Catalog=HotelManager;Integrated Security=True"
            providerName="System.Data.SqlClient" />
      </connectionStrings>
      <appSettings>
        <add key="dbType" value="Sql" />
      </appSettings>
    </configuration>在访问数据库的类中可以这样调用
    using System.Configuration; string conString =
                ConfigurationManager.ConnectionStrings["SqlConnectionString"].ToString();
      

  3.   

    public   class   INIClass   
      {   
      public   string   inipath;   
      [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);   
      ///   <summary>   
      ///   构造方法   
      ///   </summary>   
      ///   <param   name="INIPath">文件路径</param>   
      public   INIClass(string   INIPath)   
      {   
      inipath   =   INIPath;   
      }   
      ///   <summary>   
      ///   写入INI文件   
      ///   </summary>   
      ///   <param   name="Section">项目名称(如   [DataTP]   )</param>   
      ///   <param   name="Key">键</param>   
      ///   <param   name="Value">值</param>   
      public   void   IniWriteValue(string   Section,string   Key,string   Value)   
      {   
      WritePrivateProfileString(Section,Key,Value,this.inipath);   
      }   
      ///   <summary>   
      ///   读出INI文件   
      ///   </summary>   
      ///   <param   name="Section">项目名称(如   [DataTP]   )</param>   
      ///   <param   name="Key">键</param>   
      public   string   IniReadValue(string   Section,string   Key)   
      {   
      StringBuilder   temp   =   new   StringBuilder(500);   
      int   i   =   GetPrivateProfileString(Section,Key,"",temp,500,this.inipath);   
      return   temp.ToString();   
      }   
      ///   <summary>   
      ///   验证文件是否存在   
      ///   </summary>   
      ///   <returns>布尔值</returns>   
      public   bool   ExistINIFile()   
      {   
      return   File.Exists(inipath);   
      }   
      }
    这是Ini的
      

  4.   

    1.config文件
    2.读文件的方式。
    3.还有一种是用类的反序列化原理来做。
    using System;
    using System.Xml;
    using System.Xml.Serialization;
    using System.IO;/* The XmlRootAttribute allows you to set an alternate name 
       (PurchaseOrder) of the XML element, the element namespace; by 
       default, the XmlSerializer uses the class name. The attribute 
       also allows you to set the XML namespace for the element.  Lastly,
       the attribute sets the IsNullable property, which specifies whether 
       the xsi:null attribute appears if the class instance is set to 
       a null reference. */
    [XmlRootAttribute("PurchaseOrder", Namespace="http://www.cpandl.com", 
    IsNullable = false)]
    public class PurchaseOrder
    {
       public Address ShipTo;
       public string OrderDate; 
       /* The XmlArrayAttribute changes the XML element name
        from the default of "OrderedItems" to "Items". */
       [XmlArrayAttribute("Items")]
       public OrderedItem[] OrderedItems;
       public decimal SubTotal;
       public decimal ShipCost;
       public decimal TotalCost;   
    }
     
    public class Address
    {
       /* The XmlAttribute instructs the XmlSerializer to serialize the Name
          field as an XML attribute instead of an XML element (the default
          behavior). */
       [XmlAttribute]
       public string Name;
       public string Line1;   /* Setting the IsNullable property to false instructs the 
          XmlSerializer that the XML attribute will not appear if 
          the City field is set to a null reference. */
       [XmlElementAttribute(IsNullable = false)]
       public string City;
       public string State;
       public string Zip;
    }
     
    public class OrderedItem
    {
       public string ItemName;
       public string Description;
       public decimal UnitPrice;
       public int Quantity;
       public decimal LineTotal;   /* Calculate is a custom method that calculates the price per item,
          and stores the value in a field. */
       public void Calculate()
       {
          LineTotal = UnitPrice * Quantity;
       }
    }
     
    public class Test
    {
       public static void Main()
       {
          // Read and write purchase orders.
          Test t = new Test();
          t.CreatePO("po.xml");
          t.ReadPO("po.xml");
       }   private void CreatePO(string filename)
       {
          // Create an instance of the XmlSerializer class;
          // specify the type of object to serialize.
          XmlSerializer serializer = 
          new XmlSerializer(typeof(PurchaseOrder));
          TextWriter writer = new StreamWriter(filename);
          PurchaseOrder po=new PurchaseOrder();
           
          // Create an address to ship and bill to.
          Address billAddress = new Address();
          billAddress.Name = "Teresa Atkinson";
          billAddress.Line1 = "1 Main St.";
          billAddress.City = "AnyTown";
          billAddress.State = "WA";
          billAddress.Zip = "00000";
          // Set ShipTo and BillTo to the same addressee.
          po.ShipTo = billAddress;
          po.OrderDate = System.DateTime.Now.ToLongDateString();
     
          // Create an OrderedItem object.
          OrderedItem i1 = new OrderedItem();
          i1.ItemName = "Widget S";
          i1.Description = "Small widget";
          i1.UnitPrice = (decimal) 5.23;
          i1.Quantity = 3;
          i1.Calculate();
     
          // Insert the item into the array.
          OrderedItem [] items = {i1};
          po.OrderedItems = items;
          // Calculate the total cost.
          decimal subTotal = new decimal();
          foreach(OrderedItem oi in items)
          {
             subTotal += oi.LineTotal;
          }
          po.SubTotal = subTotal;
          po.ShipCost = (decimal) 12.51; 
          po.TotalCost = po.SubTotal + po.ShipCost; 
          // Serialize the purchase order, and close the TextWriter.
          serializer.Serialize(writer, po);
          writer.Close();
       }
     
       protected void ReadPO(string filename)
       {
          // Create an instance of the XmlSerializer class;
          // specify the type of object to be deserialized.
          XmlSerializer serializer = new XmlSerializer(typeof(PurchaseOrder));
          /* If the XML document has been altered with unknown 
          nodes or attributes, handle them with the 
          UnknownNode and UnknownAttribute events.*/
          serializer.UnknownNode+= new 
          XmlNodeEventHandler(serializer_UnknownNode);
          serializer.UnknownAttribute+= new 
          XmlAttributeEventHandler(serializer_UnknownAttribute);
       
          // A FileStream is needed to read the XML document.
          FileStream fs = new FileStream(filename, FileMode.Open);
          // Declare an object variable of the type to be deserialized.
          PurchaseOrder po;
          /* Use the Deserialize method to restore the object's state with
          data from the XML document. */
          po = (PurchaseOrder) serializer.Deserialize(fs);
          // Read the order date.
          Console.WriteLine ("OrderDate: " + po.OrderDate);
      
          // Read the shipping address.
          Address shipTo = po.ShipTo;
          ReadAddress(shipTo, "Ship To:");
          // Read the list of ordered items.
          OrderedItem [] items = po.OrderedItems;
          Console.WriteLine("Items to be shipped:");
          foreach(OrderedItem oi in items)
          {
             Console.WriteLine("\t"+
             oi.ItemName + "\t" + 
             oi.Description + "\t" +
             oi.UnitPrice + "\t" +
             oi.Quantity + "\t" +
             oi.LineTotal);
          }
          // Read the subtotal, shipping cost, and total cost.
          Console.WriteLine("\t\t\t\t\t Subtotal\t" + po.SubTotal);
          Console.WriteLine("\t\t\t\t\t Shipping\t" + po.ShipCost); 
          Console.WriteLine("\t\t\t\t\t Total\t\t" + po.TotalCost);
       }
     
       protected void ReadAddress(Address a, string label)
       {
          // Read the fields of the Address object.
          Console.WriteLine(label);
          Console.WriteLine("\t"+ a.Name );
          Console.WriteLine("\t" + a.Line1);
          Console.WriteLine("\t" + a.City);
          Console.WriteLine("\t" + a.State);
          Console.WriteLine("\t" + a.Zip );
          Console.WriteLine();
       }   private void serializer_UnknownNode
       (object sender, XmlNodeEventArgs e)
       {
          Console.WriteLine("Unknown Node:" +   e.Name + "\t" + e.Text);
       }   private void serializer_UnknownAttribute
       (object sender, XmlAttributeEventArgs e)
       {
          System.Xml.XmlAttribute attr = e.Attr;
          Console.WriteLine("Unknown attribute " + 
          attr.Name + "='" + attr.Value + "'");
       }
    }
      

  5.   

    引用 10 楼 patrickpan 的回复:
    PatrickPan
    晕死,自己用ini也就算了,还推荐别人用ini。 
    XML配置早就取代ini配置了。 
    .net对xml支持很好,根本不支持ini,读取ini还要调用api,如果读文件,一行行数据处理,那不是一般的无聊!!!