CS应用程序平台多语种技术应用研究

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:


摘 要
  C/S应用程序平台多语种技术是一种基于C/S应用技术结构平台的关于多语种的转换和翻译技术。本设计基于Visual Studio.Net集成开发环境,采用SQL Server2000进行数据库后台开发。通过采用数据字典实现应用系统的静态文本转换;通过使用Visual Studio.Net上的默认控件来实现提示信息的多语种转换;采用JAVAScript解决报警信息的多语种转换。能够在软件开发工具和开发平台中能够自由进行多语种切换,增强软件开发工具和开发平台的使用性与通用性。本设计采用.NET技术,跨平台性强,运行速度快,用户可以快速、方便的进行操作,达到了预期效果。
  
  关键词: 多语种;数据字典;脚本语言

  
The Multilingual Language Technology of C / S
  Applications Platform
  
                     Abstract
  The multilingual language conversion of C / S applications platform is a sort of technology that is based on C / S applications in the platform of the structure on the multilingual conversion and translation. It is developed with visual studio.net integrated development tools as ground-designed and SQL Server 2000 database as development background. The static text conversion is achieved with the use of data dictionary application system. The message of the multilingual conversion is completed with the use of the default controls in the Visual Studio.Net. The multilingual conversion is resolved with JAVAScript alarm of information. The software tools and platform in this thesis can be multilingual switching freely, enhanced software development tools and developed platform usability. For used .NET technology in this system, the system is a strong cross-platform, can be run quickly and easily conducted the operation which achieve the desired effect.
  
   Key words: multilingual language; data dictionary; JAVAScript

目录
论文总页数:23页
1. 引言 1
1.1 设计背景 1
1.2 设计意义 1
1.3 设计方法 1
2. 需求分析 2
2.1 实际需求 2
2.2 功能需求 2
3. 数据库分析及设计 2
3.1 数据字典表 2
3.2 报表信息表 3
4. 系统设计 3
4.1 功能分析 3
4.2 实现流程 4
4.3 模块设计 5
4.4 详细设计 5
4.4.1 静态文本中的多语种转换 5
4.4.2 报警、提示、警告信息的多语种转换 8
4.4.3 报表系统前台页面表项的动态转换 12
5. 系统测试 16
5.1 遇到的问题 16
5.2 解决问题的方法 16
结   论 16
参考文献 17
声    明 19

功能分析
  本设计实现的主要功能有三个:静态文本中的多语种转换,它分为单词和语句;在系统的消息中进行多语种的转换,系统消息分为警告、报警、提示等;报表系统前台页面表项的动态转换。
  设计分为三个部分:首先在C/S应用程序的按钮上实现静态文本的多语种转换;然后通过设计一个数据字典实现动态的转换;最后用一个报表系统的提交页面实现页面的多语种转换。
   设计的主要设计思路为"三层结构",如图4-1所示,具体描述如下。
  表现层:位于最外层(最上层),离用户最近。用于显示数据和接收用户输入的数据,为用户提供一种交互式操作的界面。
  中间业务层:负责处理用户输入的信息,或者是将这些信息发送给数据访问层进行保存,或者是调用数据访问层中的函数再次读出这些数据。中间业务层也可以包括一些对"商业逻辑"描述代码在里面。
  数据访问层:仅实现对数据的保存和读取操作。数据访问,可以访问数据库系统、二进制文件、文本文档或是XML文档。

模块设计
  本设计由三个主要模块组成。即静态的多语种转换、动态的多语种转换、报表系统前台页面表项的动态转换。