-
大小: 6.71MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-09-27
- 语言: 其他
- 标签: webservice 程序更新
资源简介
1、此系统更新程序主要是通过WebService作为服务器端的更新,从服务器上建立WebService,并通过WebService上的XML中的版本号和客户端进行对比来进行更新。当发现客户端的版本号与服务器中不一样,则将服务器中文件下载到客户端UPDATE文件夹中,再从此文件夹复制到对应的文件内容中。
2、在服务器上创建好WebService后,在对应目录下创建update文件夹,将相关更新文件放入文件夹中,并且在update.xml文件中如下配置。
1.0.0.2 更新版本号,如果要更新,需要增加版本号,如1.0.0.3
要更新的文件数目
true name是文件名 true是否更新这个文件
true 更新或者创建文件夹
true 更新文件夹内容
true
true
true 更新文件夹内容
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Start
{
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 = System.AppDomain.CurrentDomain.baseDirectory + “\\“ + inipath + “.ini“;
}
//写INI文件
public void IniWriteValue(string Section string Key string Value)
{
WritePrivateProfileString(Section Key Value this.Path);
}
//读取INI文件指定
public string IniReadValue(string Section string Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section Key ““ temp 255 this.Path);
return temp.ToString();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 45568 2011-02-18 09:00 WebService方式的系统更新程序程序\BJ\2011预算.xls
文件 323590 2006-05-07 03:58 WebService方式的系统更新程序程序\BJ\kchart.ico
文件 35840 2011-12-05 10:58 WebService方式的系统更新程序程序\BJ\kjkm1.xls
文件 149 2011-12-05 13:45 WebService方式的系统更新程序程序\BJ\mssccprj.scc
文件 2025 2011-12-16 09:43 WebService方式的系统更新程序程序\BJ\Solution_WLJZH.sln
..A..H. 73728 2012-02-07 08:59 WebService方式的系统更新程序程序\BJ\Solution_WLJZH.suo
文件 256 2011-12-05 09:12 WebService方式的系统更新程序程序\BJ\Solution_WLJZH.vssscc
文件 843 2011-12-16 09:53 WebService方式的系统更新程序程序\BJ\Start\app.config
文件 327680 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Appfr
文件 315 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Applications.xm
文件 265216 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\budget.exe
文件 710216 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\C1.Win.C1FlexGrid.2.dll
文件 656960 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\C1.Win.C1Input.2.dll
文件 317877 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\C1.Win.C1Input.2.xm
文件 304720 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\C1.Win.C1SuperTooltip.2.dll
文件 6 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\DataConnect\dd1\22\12\1.txt
文件 194 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\DataConnect\QXXT.xm
文件 194 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\DataConnect\YYCX.xm
文件 573440 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\DataWindow.dll
文件 167936 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\DataWindowInterop.dll
文件 942080 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Excel.dll
文件 32768 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Gl.DataAccess.dll
文件 63488 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\MainMenu.dll
文件 479232 2012-01-30 16:06 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\PowerManager2008.exe
文件 270848 2012-01-30 10:55 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.exe
文件 843 2011-12-16 09:53 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.exe.config
文件 50688 2012-01-30 10:55 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.pdb
文件 14328 2012-02-07 08:56 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.vshost.exe
文件 843 2011-12-16 09:53 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.vshost.exe.config
文件 490 2007-07-21 01:33 WebService方式的系统更新程序程序\BJ\Start\bin\Debug\Start.vshost.exe.manifest
............此处省略276个文件信息
- 上一篇:MCP41010中文资料
- 下一篇:Qt点餐管理系统
相关资源
- axis1实现webservice 及客户端调用方法
- TcpMonitor
- mule学习demo包含webservice调用参数转换
- 西北工业大学软件工程WebServices实验报
- 集中式MAS服务平台WebService-短信接口开
- WebApi寄宿到控制台的一个程序
- Building.Microservices
- 基于webservice的预约系统
- cxf集成Spring的restful WebService接口以J
- Qt调用WebService
- 微信小程序与webservice.net数据交互用例
- Spring+CXF+tomcat开发webservice
- 黑马程序员_Webservice公开课源码和笔记
- axis2-1.5.1
- qt 5使用gsoap发布webservice服务与调用
- apache axis 1.4 src官方已经找不到了
- SoapUI破解版
- NC中开发webservice所需工具包
- springBoot完整整合WebService框架CXF
- SpringBoot WebService cxf接口发布以及lo
- rest soap cxf webservice maven springmvc
- 据wsdl文件,利用sproxy.exe生成的头文件
- WebService入门精选视频教程day1极详细
- soapUI安装包
- 安卓含定位天气预报实现
- CXF实现发布RESTful WebService服务
- 用Sping发布WebService
- WebService 简单使用(天气查询)
- Node.js Webservice
- QT使用GSoap发布WebService的Demo
评论
共有 条评论