我们将研究如何创建一个作为Windows服务的应用程序。内容包含什么是Windows服务,如何创建、安装和调试它们。会用到SystemServiceProcessServiceBase命名空间的类。什么是Windows服务?Windows服务应用程序是一种需要长期运行的应用程序,它对于服务器环境特别适合。它没有用户界面,并且也不会产生任何可视输出。任何用户消息都会被写进Windows事件日志。计算机启动时,服务会自动开始运行。它们不要用户一定登录才运行,它们能在包括这个系统内的任何用户环境下运行。通过服务控制管理器,Windows服务是可控的,可以终止、暂停及当需要时启动。Windows服务,以前的NT服务,都是被作为WindowsNT *** 作系统的一部分引进来的。它们在Windows9x及WindowsMe下没有。你需要使用NT级别的 *** 作系统来运行Windows服务,诸如:WindowsNT、Windows2000Professional或Windows2000Server。举例而言,以Windows服务形式的产品有:MicrosoftExchange、SQLServer,还有别的如设置计算机时钟的WindowsTime服务。创建一个Windows服务我们即将创建的这个服务除了演示什么也不做。服务被启动时会把一个条目信息登记到一个数据库当中来指明这个服务已经启动了。在服务运行期间,它会在指定的时间间隔内定期创建一个数据库项目记录。服务停止时会创建最后一条数据库记录。这个服务会自动向Windows应用程序日志当中登记下它成功启动或停止时的记录。VisualStudioNET能够使创建一个Windows服务变成相当简单的一件事情。启动我们的演示服务程序的说明概述如下。1新建一个项目2从一个可用的项目模板列表当中选择Windows服务3设计器会以设计模式打开4从工具箱的组件表当中拖动一个Timer对象到这个设计表面上(注意:要确保是从组件列表而不是从Windows窗体列表当中使用Timer)5设置Timer属性,Enabled属性为False,Interval属性30000毫秒6切换到代码视图页(按F7或在视图菜单当中选择代码),然后为这个服务填加功能Windows服务的构成在你类后面所包含的代码里,你会注意到你所创建的Windows服务扩充了SystemServiceProcessService类。所有以NET方式建立的Windows服务必须扩充这个类。它会要求你的服务重载下面的方法,VisualStudio默认时包括了这些方法。•Dispose–清除任何受控和不受控资源(managedandunmanagedresources)•OnStart–控制服务启动•OnStop–控制服务停止数据库表脚本样例在这个例子中使用的数据库表是使用下面的T-SQL脚本创建的。我选择SQLServer数据库。你可以很容易修改这个例子让它在Access或任何你所选择的别的数据库下运行。CREATETABLE[dbo][MyServiceLog]([in_LogId][int]IDENTITY(1,1)NOTNULL,[vc_Status][nvarchar](40)COLLATESQL_Latin1_General_CP1_CI_ASNOTNULL,[dt_Created][datetime]NOTNULL)ON[PRIMARY]Windows服务样例下面就是我命名为MyService的Windows服务的所有源代码。大多数源代码是由VisualStudio自动生成的。CodeusingSystem;usingSystemCollections;usingSystemComponentModel;usingSystemData;usingSystemDataSqlClient;usingSystemDiagnostics;usingSystemServiceProcess;namespaceCodeGuruMyWindowsService{publicclassMyService:SystemServiceProcessServiceBase{privateSystemTimersTimertimer1;//////Requireddesignervariable///privateSystemComponentModelContainercomponents=null;publicMyService(){//ThiscallisrequiredbytheWindowsForms//ComponentDesignerInitializeComponent();}//ThemainentrypointfortheprocessstaticvoidMain(){SystemServiceProcessServiceBase[]ServicesToRun;ServicesToRun=newSystemServiceProcessServiceBase[]{newMyService()};SystemServiceProcessServiceBaseRun(ServicesToRun);}//////RequiredmethodforDesignersupport-donotmodify///thecontentsofthismethodwiththecodeeditor///privatevoidInitializeComponent(){thistimer1=newSystemTimersTimer();((SystemComponentModelISupportInitialize)(thistimer1))BeginInit();////timer1//thistimer1Interval=30000;thistimer1Elapsed+=newSystemTimersElapsedEventHandler(thistimer1_Elapsed);////MyService//thisServiceName="MySampleService";((SystemComponentModelISupportInitialize)(thistimer1))EndInit();}//////Cleanupanyresourcesbeingused///protectedoverridevoidDispose(booldisposing){if(disposing){if(components!=null){componentsDispose();}}baseDispose(disposing);}//////Setthingsinmotionsoyourservicecandoitswork///protectedoverridevoidOnStart(string[]args){thistimer1Enabled=true;thisLogMessage("ServiceStarted");}//////Stopthisservice///protectedoverridevoidOnStop(){thistimer1Enabled=false;thisLogMessage("ServiceStopped");}/RespondtotheElapsedeventofthetimercontrol/privatevoidtimer1_Elapsed(objectsender,SystemTimersElapsedEventArgse){thisLogMessage("ServiceRunning");}/Logspecifiedmessagetodatabase/privatevoidLogMessage(stringMessage){SqlConnectionconnection=null;SqlCommandcommand=null;try{connection=newSqlConnection("Server=localhost;Database=SampleDatabase;IntegratedSecurity=false;UserId=sa;Password=;");command=newSqlCommand("INSERTINTOMyServiceLog(vc_Status,dt_Created)VALUES(’"+Message+"’,getdate())",connection);connectionOpen();intnumrows=commandExecuteNonQuery();}catch(Exceptionex){SystemDiagnosticsDebugWriteLine(exMessage);}finally{commandDispose();connectionDispose();}}}}安装Windows服务Windows服务不同于普通Windows应用程序。不可能简简单单地通过运行一个EXE就启动Windows服务了。安装一个Windows服务应该通过使用NETFramework提供的InstallUtilexe来完成,或者通过诸如一个MicrosoftInstaller(MSI)这样的文件部署项目完成。添加服务安装程序创建一个Windows服务,仅用InstallUtil程序去安装这个服务是不够的。你必须还要把一个服务安装程序添加到你的Windows服务当中,这样便于InstallUtil或是任何别的安装程序知道应用你服务的是怎样的配置设置。1将这个服务程序切换到设计视图2右击设计视图选择“添加安装程序”3切换到刚被添加的ProjectInstaller的设计视图4设置serviceInstaller1组件的属性:1)ServiceName=MySampleService2)StartType=Automatic5设置serviceProcessInstaller1组件的属性1)Account=LocalSystem6生成解决方案在完成上面的几个步骤之后,会自动由VisualStudio产生下面的源代码,它包含于ProjectInstallercs这个源文件内。CodeusingSystem;usingSystemCollections;usingSystemComponentModel;usingSystemConfigurationInstall;namespaceCodeGuruMyWindowsService{//////SummarydescriptionforProjectInstaller///[RunInstaller(true)]publicclassProjectInstaller:SystemConfigurationInstallInstaller{privateSystemServiceProcessServiceProcessInstallerserviceProcessInstaller1;privateSystemServiceProcessServiceInstallerserviceInstaller1;//////Requireddesignervariable///privateSystemComponentModelContainercomponents=null;publicProjectInstaller(){//ThiscallisrequiredbytheDesignerInitializeComponent();//TODO:AddanyinitializationaftertheInitComponentcall}#regionComponentDesignergeneratedcode//////RequiredmethodforDesignersupport-donotmodify///thecontentsofthismethodwiththecodeeditor///privatevoidInitializeComponent(){thisserviceProcessInstaller1=newSystemServiceProcessServiceProcessInstaller();thisserviceInstaller1=newSystemServiceProcessServiceInstaller();////serviceProcessInstaller1//thisserviceProcessInstaller1Account=SystemServiceProcessServiceAccountLocalSystem;thisserviceProcessInstaller1Password=null;thisserviceProcessInstaller1Username=null;////serviceInstaller1//thisserviceInstaller1ServiceName="MySampleService";thisserviceInstaller1StartType=SystemServiceProcessServiceStartModeAutomatic;////ProjectInstaller//thisInstallersAddRange(newSystemConfigurationInstallInstaller[]{thisserviceProcessInstaller1,thisserviceInstaller1});}#endregion}}用InstallUtil安装Windows服务现在这个服务已经生成,你需要把它安装好才能使用。下面 *** 作会指导你安装你的新服务。1打开VisualStudioNET命令提示2改变路径到你项目所在的bin\Debug文件夹位置(如果你以Release模式编译则在bin\Release文件夹)3执行命令“InstallUtilexeMyWindowsServiceexe”注册这个服务,使它建立一个合适的注册项。4右击桌面上“我的电脑”,选择“管理”就可以打计算机管理控制台5在“服务和应用程序”里面的“服务”部分里,你可以发现你的Windows服务已经包含在服务列表当中了6右击你的服务选择启动就可以启动你的服务了在每次需要修改Windows服务时,这就会要求你卸载和重新安装这个服务。不过要注意在卸载这个服务前,最好确保服务管理控制台已经关闭,这会是一个很好的习惯。如果没有这样 *** 作的话,你可能在卸载和重安装Windows服务时会遇到麻烦。仅卸载服务的话,可以执行相的InstallUtil命令用于注销服务,不过要在后面加一个/u命令开关。调试Windows服务从另外的角度度看,调试Windows服务绝不同于一个普通的应用程序。调试Windows服务要求的步骤。服务不能象你对普通应用程序做的那样,只要简单地在开发环境下执行就可以调试了。服务必须首先被安装和启动,这一点在前面部分我们已经做到了。为了便于跟踪调试代码,一旦服务被启动,你就要用VisualStudio把运行的进程附加进来(attach)。记住,对你的Windows服务做的任何修改都要对这个服务进行卸载和重安装。附加正在运行的Windows服务为了调试程序,有些附加Windows服务的 *** 作说明。这些 *** 作假定你已经安装了这个Windows服务并且它正在运行。1用VisualStudio装载这个项目2点击“调试”菜单3点击“进程”菜单4确保显示系统进程被选5在可用进程列表中,把进程定位于你的可执行文件名称上点击选中它6点击附加按钮7点击确定8点击关闭9在timer1_Elapsed方法里设置一个断点,然后等它执行总结现在你应该对Windows服务是什么,以及如何创建、安装和调试它们有一个粗略的认识了。Windows服务的额处的功能你可以自行研究。这些功能包括暂停(OnPause)和恢复(OnContinue)的能力。暂停和恢复的能力在默认情况下没有被启用,要通过Windows服务属性来设置。
你好,C语言通过编译之后,会变为计算机能够执行的程序。
源程序(源代码)是指按照一定的程序设计语言规范编写的未经过编译的文本文件,是具有可读性的计算机语言指令。可以比作自己手写的程序代码。可执行程序(Executable Program,EXE file)是可以在 *** 作系统存储空间中浮动定位的二进制可执行程序。一般软件安装后会生成可执行文件,可以直接加载到内存中, *** 作系统加载并执行。
以 C 语言为例,自己编写的源代码文件扩展名为 c,这个 c 文件就是源文件。从源文件到可执行文件一般需要经过几个步骤:预处理->编译->汇编->链接这四个过程。
希望我的回答能够帮助到你。
以上就是关于windows下的应用程序怎么生成的全部的内容,包括:windows下的应用程序怎么生成的、用编译程序可将c语言源程序变为什么程序、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)