0

我已经安装了这个应用程序,但问题是这个应用程序不读取 config.ini 文件我得到了 config.ini 不存在的错误?确定我错了我不知道如何在安装项目中添加 config.ini 文件?

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Timers;
using System.Net.NetworkInformation;
using System.IO;

namespace MovimentoServic
{
    public partial class Service1 : ServiceBase
    {
        Dictionary<string, string> vpN = new Dictionary<string, string>();
        cancelaments cancel = new cancelaments();
        vendas vendas = new vendas();
        Vendaecf ecf = new Vendaecf();
        Sangrias sangria = new Sangrias();
        Devolucao devolucao = new Devolucao();
        CancelamentECF cancelecf = new CancelamentECF();
        EnviarItemparalojas enivar = new EnviarItemparalojas();
        RecheckVendas recheck = new RecheckVendas();

        String vpn = null;
        String host = null;
        string user = null;
        string pass = null;
        string mysql_db = null;
        string vpn_db = null;
        String permissao = null;
        int count = 0;

        public void conect()
        {
            if ( System.IO.File.Exists("config.ini") )
            {
                String[] INI = System.IO.File.ReadAllLines("config.ini");

                for ( int i = 0; i < INI.Length; i++ )
                {
                    if ( INI[i].StartsWith("HOST") )
                    {
                        host = INI[i].Substring(INI[i].IndexOf("=") + 1);
                    }
                    if ( INI[i].StartsWith("USER") )
                    {
                        user = INI[i].Substring(INI[i].IndexOf("=") + 1);
                    }
                    if ( INI[i].StartsWith("PASS") )
                    {
                        pass = INI[i].Substring(INI[i].IndexOf("=") + 1);
                    }
                    if ( INI[i].StartsWith("DBPATH") )
                    {
                        mysql_db = INI[i].Substring(INI[i].IndexOf("=") + 1);
                    }

                    if ( INI[i].StartsWith("VPN") )
                    {
                        vpn = (INI[i].Substring(INI[i].IndexOf("=") + 1));
                        Char[] cs = { ';' };
                        String[] VPN = vpn.Split(cs);
                        vpN.Add(VPN[0], VPN[1]);
                    }
                    if ( INI[i].StartsWith("DBPATH_VPN") )
                    {
                        vpn_db = (INI[i].Substring(INI[i].IndexOf("=") + 1));
                    }
                    if ( INI[i].StartsWith("Permissao") )
                    {
                        permissao = (INI[i].Substring(INI[i].IndexOf("=") + 1));
                    }

                }
            }

        }
        public static bool IsAlive( string aIP, String shop )
        {
            bool result = false;
            Ping pingSender = new Ping();
            PingOptions options = new PingOptions();
            options.DontFragment = true;
            string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
            byte[] buffer = Encoding.ASCII.GetBytes(data);
            int timeout = 10;
            PingReply reply = pingSender.Send(aIP, timeout, buffer, options);
            if ( reply.Status == IPStatus.Success )
            {
                result = true;
            }
            return result;
        }


        long Validtime = 50;
        int tk = 0;
        private void timer1_Elapsed( object sender, EventArgs e )
        {
            tk++;
            if ( tk == Validtime )
            {
               // Workout();
                tk = 0;
            }

        }
        public Service1()
        {
            InitializeComponent();

        }

        protected override void OnStart( string[] args )
        {
            conect();

            Timer timer1 = new Timer();
            timer1.Interval = 100;
            timer1.Start();
            timer1.Elapsed += new ElapsedEventHandler(timer1_Elapsed);

        }

        protected override void OnStop()
        {
        }
    }
}
4

2 回答 2

0

使用自 2.0 版以来内置于 .NET Framework 中的设置机制,而不是您的config.ini文件。

为此,请打开项目的属性并转到Settings选项卡。添加您需要的设置(注意app.config正在创建一个文件,该文件在编译时复制到输出文件夹中<projectname>.exe.config)。在您的程序中,使用如下设置

string myStringSetting = Properties.Settings.Default.MySetting

安装服务后,更改exe.config文件将使服务在重新启动后使用新设置。

于 2012-09-03T12:52:31.357 回答
0

您的问题是因为您正在假设 ini 文件的位置以及服务的启动方式。

在服务中,您不能每次都依赖当前工作目录在同一个地方。您应该将配置文件的路径存储在注册表中(甚至首先将配置数据存储在注册表中)。

于 2012-09-03T14:07:31.913 回答