CN113297831A - Method and system for generating verifiable report webpage by Excel - Google Patents

Method and system for generating verifiable report webpage by Excel Download PDF

Info

Publication number
CN113297831A
CN113297831A CN202110619290.8A CN202110619290A CN113297831A CN 113297831 A CN113297831 A CN 113297831A CN 202110619290 A CN202110619290 A CN 202110619290A CN 113297831 A CN113297831 A CN 113297831A
Authority
CN
China
Prior art keywords
file
excel
report
html
generating
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN202110619290.8A
Other languages
Chinese (zh)
Other versions
CN113297831B (en
Inventor
刘锋
敦建征
尚方剑
冯素晶
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
CRSC Institute of Smart City Research and Design Co Ltd
Original Assignee
CRSC Institute of Smart City Research and Design Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by CRSC Institute of Smart City Research and Design Co Ltd filed Critical CRSC Institute of Smart City Research and Design Co Ltd
Priority to CN202110619290.8A priority Critical patent/CN113297831B/en
Publication of CN113297831A publication Critical patent/CN113297831A/en
Application granted granted Critical
Publication of CN113297831B publication Critical patent/CN113297831B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/166Editing, e.g. inserting or deleting
    • G06F40/186Templates
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/12Use of codes for handling textual entities
    • G06F40/151Transformation

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Health & Medical Sciences (AREA)
  • Artificial Intelligence (AREA)
  • Audiology, Speech & Language Pathology (AREA)
  • Computational Linguistics (AREA)
  • General Health & Medical Sciences (AREA)
  • Data Mining & Analysis (AREA)
  • Information Transfer Between Computers (AREA)
  • Document Processing Apparatus (AREA)

Abstract

The invention relates to a method and a system for generating a verifiable report webpage by Excel, which is characterized by comprising the following steps: 1) converting the format of the Excel report template file to obtain an XML file, such as an XML spreadsheet 2003 file; 2) reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language, generating an HTML file, and realizing the conversion of the Excel report content and the style; 3) and analyzing the function formula in the XML file, generating an automatic calculation and verification rule code based on the analyzed function formula, inserting the code into the generated HTML file, and completing the automatic processing of generating a verifiable report webpage by Excel. The method can be widely applied to the technical field of Excel conversion.

Description

Method and system for generating verifiable report webpage by Excel
Technical Field
The invention belongs to an Excel conversion technology, relates to a method and a system for generating a verifiable report webpage by Excel, and particularly relates to a method and a system for converting an Excel report into an HTML webpage and completing the conversion of a basic function into a JS language verification code.
Background
With the development of enterprise information construction, more and more company businesses need to realize online processing. Most of the internal business of the company is concentrated on the aspects of report form filling, auditing, summarizing and the like. In the implementation process of information-based construction, it is found that each department of an enterprise mostly adopts an Excel form mode to perform data filling, summarizing and the like, and an Excel form template is mature. In the system construction, a developer inevitably needs to convert an Excel form template into an HTML webpage.
The current general implementation method is as follows:
firstly, manually drawing a webpage by a front-end developer according to an Excel template to realize the reproduction of an Excel style in a webpage file;
and secondly, adjusting the cell style one by one according to the cell data source in the Excel form. If the data source is input by a user, adding an input label in the cell; and if the data source is calculated by the function, adding a text label in the cell.
And thirdly, carrying out code logic development and verification rule development of data calculation according to a function formula of the cell, and realizing an automatic calculation function in the Excel form and automatic verification when the form is submitted.
However, the report information is processed by the existing technology, the whole process consumes a lot of manpower, occupies a lot of development time, and is easy to generate the problems of missed writing, wrong writing and the like due to the reasons of large data volume, much repetitive work and the like.
Disclosure of Invention
In view of the above problems, an object of the present invention is to provide a method and a system for generating a verifiable report webpage by Excel, which can improve the efficiency and accuracy of converting the existing Excel report into the verifiable report webpage and realize the automation of the related conversion work.
In order to achieve the purpose, the invention adopts the following technical scheme:
the first aspect of the invention provides a method for generating a verifiable report webpage by Excel, which comprises the following steps: 1) converting the format of the Excel report file to obtain an XML file; 2) reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language, generating an HTML file, and realizing the conversion of the Excel report content and the style; 3) and analyzing the function formula in the XML file, generating an automatic calculation and verification rule code based on the analyzed function formula, inserting the code into the generated HTML file, and completing the automatic processing of generating a verifiable report webpage by Excel.
Further, in the step 2), the method for reading and analyzing the XML file, and converting the XML file into the corresponding HTML language according to the analysis content to generate the HTML file includes the following steps: 2.1) reading the XML file, and analyzing according to the related label and the attribute to obtain report style data of the Excel report file; 2.2) splicing the report style data of the obtained Excel report file, and converting the report style data into HTML table character strings; 2.3) writing the obtained character string of the HTML table into a file, and storing to obtain the HTML file.
Further, in the step 2.1), the report style data includes line number, column number, cell style and value of an Excel report file.
Further, in the step 2.2), the method for splicing the report style data of the obtained Excel report template file and converting the report style data into the HTML table character string includes: changing StyleID as a tag attribute ss of the cell style into a class attribute td in an HTML file; respectively converting < Table > tags, < Row > tags and < Cell > tags in the XML file into < Table > tags, < tr > tags and < td > tags in the HTML file; the cells of the null data in the XML file are converted to < td > tags containing < input > tags.
Further, in the step 3), the method for analyzing the function formula in the XML file, generating an automatic calculation and check rule code based on the analyzed function formula, and inserting the code into the generated HTML file includes the following steps: 3.1) traversing the XML file to obtain the function formula contents corresponding to different cells; 3.2) encapsulating the cells and the corresponding function formulas into MAP sets; 3.3) configuring an automatic calculation and verification function code template of the function formula, wherein the template comprises all function formulas in Excel; 3.4) circularly processing the MAP set packaged in the step 3.2), executing partial code replacement based on the automatic calculation and verification function code template, and generating automatic calculation and verification rule codes corresponding to each cell; 3.5) inserting the code obtained in the step 3.4) into the generated HTML file to realize the automatic processing of generating a verifiable report webpage by Excel.
Further, in the step 3.1), the method for obtaining the contents of the function formula corresponding to different cells includes: and obtaining the value of the attribute ss of the Cell label of the XML file, namely Formula, and obtaining a function Formula corresponding to the Cell of the Excel report template file.
The second aspect of the present invention provides a system for generating a verifiable report webpage by Excel, which comprises: the format conversion module is used for converting the format of the Excel report template file to obtain an XML file; the content style analysis module is used for reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language and generating an HTML file; and the function analysis module is used for analyzing the function formula in the XML file, generating an automatic calculation and verification rule code string based on the analyzed function formula, inserting the code string into the generated HTML file, and realizing that Excel automatically generates a report webpage.
Further, the content style parsing module includes: the XML analysis module is used for reading the XML file and analyzing according to the related label and the attribute to obtain report style data of the Excel report template file; the data splicing module is used for splicing the report style data of the obtained Excel report template file and converting the report style data into HTML table character strings; and the HTML generation module is used for writing the obtained HTML table character string into a file and storing the HTML table character string to obtain an HTML file.
Further, the report style data obtained by the XML analysis module comprises the line number, the column number, the cell style and the value of the Excel report file.
Further, the function parsing module includes: the function formula acquisition module is used for acquiring function formula contents corresponding to different cells through traversal of the XML file; the packaging module is used for packaging the cells and the function formula into an MAP set; the template configuration module is used for configuring a common function formula calculation and verification function code template; the code generation module is used for executing partial code replacement based on the read function formula and generating an automatic calculation and verification rule code; and the code insertion module is used for inserting the obtained code into the generated HTML file to realize the automatic processing of generating the verifiable report webpage by the Excel.
Due to the adoption of the technical scheme, the invention has the following advantages: 1. according to the method, the HTML webpage is automatically analyzed and generated in an XML reading mode, the working efficiency of converting the Excel report into the webpage is improved, and the interference of human factors to the process is reduced. 2. The standard of the generated code is increased by formulating a common function formula template. Overall, by realizing the technology of automatically converting Excel into a computable verification webpage, the efficiency of information-based system construction can be improved, and the workload of front-end developers is reduced. Therefore, the method can be widely applied to the field of Excel conversion.
Drawings
Fig. 1 is a schematic flow chart of a method for generating a verifiable report webpage by Excel according to an embodiment of the present invention.
Detailed Description
The invention is described in detail below with reference to the figures and examples.
As shown in fig. 1, the method for generating a verifiable report webpage by Excel provided by the present invention includes the following steps:
1) and converting the format of the Excel report file to obtain an XML file, such as an XML spreadsheet 2003 file.
2) And reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language, generating an HTML file, and realizing the conversion of the Excel report content and the style.
Specifically, the method comprises the following steps:
and 2.1) reading the XML file, and analyzing according to the related label and the attribute to obtain report style data of the Excel report file, wherein the report style data comprises the line number, the column number, the cell style and the value of the Excel report file.
The present invention is implemented based on JAVA language, and thus selects a DOM parsing method.
2.2) splicing the report style data of the obtained Excel report file, and converting the report style data into HTML table character strings. Wherein the blank cells are automatically filled with the input box label.
Specifically, the < Table > tag in the XML file is converted to the < Table > tag in the HTML file, the < Row > tag in the XML file is converted to the < tr > tag in the HTML file, and the < Cell > tag in the XML file is converted to the < td > tag in the HTML file. It should be noted that after the cells of the empty data in the Excel file are converted into the XML file, the < Cell > tag is not generated, so that special logic processing needs to be performed in the program to convert the cells of the empty data in the Excel file into the < td > tag containing the < input > tag. In addition, the cell style is a tag attribute ss, namely StyleID, and is converted into a class attribute td in an HTML file through a program. And converting the generated character string, generating an HTML file in a stream output mode, and storing the HTML file locally.
2.3) writing the obtained character string of the HTML table into a file, and storing to obtain the HTML file.
3) And analyzing the function formula in the XML file, generating an automatic calculation and verification rule code based on the analyzed function formula, inserting the code into the generated HTML file, and completing the automatic processing of generating a verifiable report webpage by Excel.
Specifically, the method comprises the following steps:
and 3.1) traversing the XML file to obtain the function formula contents corresponding to different cells.
The function Formula in the Cell of the Excel report template file is saved in the attribute ss: Formula of the Cell label after being saved in an XML file format, and the function Formula corresponding to the Cell of the Excel report template file can be obtained by obtaining the value of the attribute.
And 3.2) encapsulating the cells and the corresponding function formulas into MAP sets so as to realize automatic calculation and batch generation of verification function codes subsequently.
3.3) configuring an automatic calculation and verification function code template of the function formula, wherein the template comprises all the function formulas in the Excel.
3.4) circularly processing the MAP set packaged in the step 3.2), and executing partial code replacement based on the automatic calculation and verification function code template to generate automatic calculation and verification rule codes corresponding to each cell.
The implementation process related to the invention realizes the calculation of the check code template corresponding to the common function formula, the corresponding code template can be correspondingly searched through the function formula obtained in the step 3.1), and partial code replacement is carried out through a program, so that the automatic generation of the calculation check rule is completed.
For example: the functional formula of the D1 cell in Excel is 'A2 + B1', and the corresponding template is $ (+ this +). The $ this is replaced with the key of map, and since the formula contains two cells, splicing is performed after two replacements. Wherein R1C-3 represents the cell moving down one row and moving left 3 rows, resulting in A2, replaced by $ ("A2"). val () +; RC [ -2] reaches the standard and the cell is moved to the left by 2 lines, resulting in B1, replaced by $ ("B1"). val () +, the strings after two replacements are spliced to $ ("a 2"). val () + $ ("B1"). val () +, the last calculated character is deleted, resulting in the final calculated code $ ("D1"). val () $ ("a 2"). val () $ ("B1"). val ().
3.5) inserting the automatic calculation and verification rule codes corresponding to the cells obtained in the step 3.4) into the generated HTML file, and realizing the automatic processing of generating a verifiable report webpage by Excel.
Since the step 3.4) has realized a plurality of automatic calculation and check function code strings, the code integration is carried out through the program, the corresponding JS code string is generated and inserted into the correct position of the HTML file generated in the step 2), and finally the automatic processing of generating the verifiable report webpage by Excel is completed.
Based on the method for generating the verifiable report webpage by the Excel, the invention also provides a system for generating the verifiable report webpage by the Excel, which comprises the following steps: the format conversion module is used for converting the format of the Excel report template file to obtain an XML file; the content style analysis module is used for reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language and generating an HTML file; and the function analysis module is used for analyzing the function formula in the XML file, generating an automatic calculation and verification rule code string based on the analyzed function formula, inserting the code string into the generated HTML file, and realizing that Excel automatically generates a report webpage.
Further, the content style parsing module includes: the system comprises an XML analysis module, a data splicing module and an HTML generation module. The XML analysis module is used for reading the XML file and analyzing according to the related tags and attributes to obtain report style data of the Excel report template file; the data splicing module is used for splicing the report style data of the obtained Excel report template file and converting the report style data into HTML table character strings; and the HTML generation module is used for writing the obtained HTML table character string into a file and storing the HTML table character string to obtain an HTML file.
Further, the report style data obtained by the XML analysis module comprises the line number, the column number, the cell style and the value of the Excel report file.
Further, the function parsing module includes: the system comprises a function formula acquisition module, a packaging module, a template configuration module, a code generation module and a code insertion module. The function formula acquisition module is used for acquiring function formula contents corresponding to different cells by traversing the XML file; the packaging module is used for packaging the cells and the function formula into an MAP set; the template configuration module is used for configuring the automatic calculation of the function formula and verifying the function code template; the code generation module is used for circularly processing the MAP set, executing partial code replacement based on the automatic calculation and verification function code template and generating an automatic calculation and verification rule code; and the code insertion module is used for inserting the obtained code into the generated HTML file to realize the automatic processing of generating the verifiable report webpage by the Excel.
The above embodiments are only used for illustrating the present invention, and the structure, connection mode, manufacturing process, etc. of the components may be changed, and all equivalent changes and modifications performed on the basis of the technical solution of the present invention should not be excluded from the protection scope of the present invention.

Claims (10)

1. A method for generating a verifiable report webpage by Excel is characterized by comprising the following steps:
1) converting the format of the Excel report file to obtain an XML file;
2) reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language, generating an HTML file, and realizing the conversion of the Excel report content and the style;
3) and analyzing the function formula in the XML file, generating an automatic calculation and verification rule code based on the analyzed function formula, inserting the code into the generated HTML file, and completing the automatic processing of generating a verifiable report webpage by Excel.
2. The method for Excel to generate the verifiable report form webpage according to claim 1, wherein in the step 2), the method for reading and analyzing the XML file, and converting the analyzed content into the corresponding HTML language to generate the HTML file comprises the following steps:
2.1) reading the XML file, and analyzing according to the related label and the attribute to obtain report style data of the Excel report file;
2.2) splicing the report style data of the obtained Excel report file, and converting the report style data into HTML table character strings;
2.3) writing the obtained character string of the HTML table into a file, and storing to obtain the HTML file.
3. The method for Excel to generate the verifiable report webpage according to claim 2, in which in the step 2.1), the report style data includes the row number, column number, cell style and value of the Excel report file.
4. The method for generating the verifiable report webpage by Excel according to claim 2, wherein in the step 2.2), the method for splicing the report style data of the obtained Excel report template file and converting the report style data into the HTML form character string comprises the following steps:
changing StyleID as a tag attribute ss of the cell style into a class attribute td in an HTML file;
respectively converting < Table > tags, < Row > tags and < Cell > tags in the XML file into < Table > tags, < tr > tags and < td > tags in the HTML file;
the cells of the null data in the XML file are converted to < td > tags containing < input > tags.
5. The method for Excel to generate verifiable report form webpage according to claim 1, wherein in the step 3), the function formula in the XML file is analyzed, and the automatic calculation and verification rule code is generated based on the analyzed function formula and inserted into the generated HTML file, comprising the following steps:
3.1) traversing the XML file to obtain the function formula contents corresponding to different cells;
3.2) encapsulating the cells and the corresponding function formulas into MAP sets;
3.3) configuring an automatic calculation and verification function code template of the function formula, wherein the template comprises all function formulas in Excel;
3.4) circularly processing the MAP set packaged in the step 3.2), executing partial code replacement based on the automatic calculation and verification function code template, and generating automatic calculation and verification rule codes corresponding to each cell;
3.5) inserting the code obtained in the step 3.4) into the generated HTML file to realize the automatic processing of generating a verifiable report webpage by Excel.
6. The method for generating the verifiable report form webpage of Excel according to claim 5, wherein in the step 3.1), the method for obtaining the function formula contents corresponding to different cells comprises: and obtaining the value of the attribute ss of the Cell label of the XML file, namely Formula, and obtaining a function Formula corresponding to the Cell of the Excel report template file.
7. A system for generating a verifiable report webpage by using Excel according to the method of any claim 1 to 6, which is characterized by comprising: the format conversion module is used for converting the format of the Excel report template file to obtain an XML file; the content style analysis module is used for reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language and generating an HTML file; and the function analysis module is used for analyzing the function formula in the XML file, generating an automatic calculation and verification rule code string based on the analyzed function formula, inserting the code string into the generated HTML file, and realizing that Excel automatically generates a report webpage.
8. The system for Excel to generate verifiable reports webpage according to claim 7, wherein: the content style parsing module includes: the XML analysis module is used for reading the XML file and analyzing according to the related label and the attribute to obtain report style data of the Excel report template file; the data splicing module is used for splicing the report style data of the obtained Excel report template file and converting the report style data into HTML table character strings; and the HTML generation module is used for writing the obtained HTML table character string into a file and storing the HTML table character string to obtain an HTML file.
9. The system for Excel to generate verifiable reports webpage according to claim 8, wherein: the report style data obtained by the XML analysis module comprises the line number, the column number, the cell style and the value of an Excel report file.
10. The system for Excel to generate verifiable reports webpage according to claim 7, wherein: the function parsing module includes: the function formula acquisition module is used for acquiring function formula contents corresponding to different cells through traversal of the XML file; the packaging module is used for packaging the cells and the function formula into an MAP set; the template configuration module is used for configuring a common function formula calculation and verification function code template; the code generation module is used for executing partial code replacement based on the read function formula and generating an automatic calculation and verification rule code; and the code insertion module is used for inserting the obtained code into the generated HTML file to realize the automatic processing of generating the verifiable report webpage by the Excel.
CN202110619290.8A 2021-06-03 2021-06-03 Method and system for generating verifiable report webpage by Excel Active CN113297831B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110619290.8A CN113297831B (en) 2021-06-03 2021-06-03 Method and system for generating verifiable report webpage by Excel

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110619290.8A CN113297831B (en) 2021-06-03 2021-06-03 Method and system for generating verifiable report webpage by Excel

Publications (2)

Publication Number Publication Date
CN113297831A true CN113297831A (en) 2021-08-24
CN113297831B CN113297831B (en) 2024-06-04

Family

ID=77326984

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110619290.8A Active CN113297831B (en) 2021-06-03 2021-06-03 Method and system for generating verifiable report webpage by Excel

Country Status (1)

Country Link
CN (1) CN113297831B (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114579914A (en) * 2022-03-22 2022-06-03 通号智慧城市研究设计院有限公司 Webpage form generation method, electronic equipment and computer readable storage medium
CN116050362A (en) * 2023-03-23 2023-05-02 青岛诺亚信息技术有限公司 Web form dynamic data binding method, medium and system

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103324731A (en) * 2013-06-28 2013-09-25 中国农业银行股份有限公司 Method and device for converting spreadsheet file into web format file
WO2016060553A1 (en) * 2014-10-13 2016-04-21 Kim Seng Kee A method for converting file format and system thereof
CN107544808A (en) * 2017-09-07 2018-01-05 北京奥威科软信息技术有限公司 The generation method and device of a kind of web form
CN111309313A (en) * 2019-10-17 2020-06-19 天津大学 Method for quickly generating HTML (hypertext markup language) and storing form data
WO2021008030A1 (en) * 2019-07-12 2021-01-21 平安科技(深圳)有限公司 Web form configuration method and device, and computer readable storage medium

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103324731A (en) * 2013-06-28 2013-09-25 中国农业银行股份有限公司 Method and device for converting spreadsheet file into web format file
WO2016060553A1 (en) * 2014-10-13 2016-04-21 Kim Seng Kee A method for converting file format and system thereof
CN107544808A (en) * 2017-09-07 2018-01-05 北京奥威科软信息技术有限公司 The generation method and device of a kind of web form
WO2021008030A1 (en) * 2019-07-12 2021-01-21 平安科技(深圳)有限公司 Web form configuration method and device, and computer readable storage medium
CN111309313A (en) * 2019-10-17 2020-06-19 天津大学 Method for quickly generating HTML (hypertext markup language) and storing form data

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
秦振海;谭守标;徐超;: "基于Web的表格信息抽取研究", 计算机技术与发展, no. 02 *
黄丹群;: "一种基于Microsoft Excel自动生成HTML表单及打印格式的方法", 电子世界, no. 18 *

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114579914A (en) * 2022-03-22 2022-06-03 通号智慧城市研究设计院有限公司 Webpage form generation method, electronic equipment and computer readable storage medium
CN116050362A (en) * 2023-03-23 2023-05-02 青岛诺亚信息技术有限公司 Web form dynamic data binding method, medium and system
CN116050362B (en) * 2023-03-23 2023-07-04 青岛诺亚信息技术有限公司 Web form dynamic data binding method, medium and system

Also Published As

Publication number Publication date
CN113297831B (en) 2024-06-04

Similar Documents

Publication Publication Date Title
CN103077185A (en) Object-based user-defined information-expanding method
CN103412853A (en) Method for automatically generating test cases aiming at document converters
CN113297831A (en) Method and system for generating verifiable report webpage by Excel
CN107391153A (en) A kind of code generating method and device based on Spring Yu MyBatis framework integrations
CN113609820A (en) Method, device and equipment for generating word file based on extensible markup language file
CN106469140A (en) A kind of report generating system and its method
CN107168695B (en) Excel data analysis method and system
CN101859303A (en) Metadata management method and management system
CN114594933A (en) Front-end code generation method and device based on file scanning and storage medium
CN102521008B (en) Program compiling device and method for compiling program
CN117009422B (en) Method for realizing data import by convenience business personnel
CN115756437B (en) Visual XML data compiling method and system based on SCHEMA file
CN115469941A (en) Automatic configuration processing method and system for wind control index calculation development based on FlinkSQL
CN116521621A (en) Data processing method and device, electronic equipment and storage medium
CN112181426B (en) Assembly program control flow path detection method and device
CN112506488A (en) Method for generating programming language class based on sql creating statement
CN111311461B (en) Editor of structured dynamic medical record form based on B-S and generation method
US20080201351A1 (en) Automated transformations for style normalization of schemas
CN113239016B (en) Database design assistance apparatus and method
CN116243901A (en) Method and system for rapidly developing multilingual project of front-end page
US8719693B2 (en) Method for storing localized XML document values
CN113971044A (en) Component document generation method, device, equipment and readable storage medium
CN112667243A (en) Automatic log adding and code problem searching and positioning method based on go language
CN108733353B (en) Interface construction method and device
CN108628606B (en) Method and system for generating WEB network management application program of embedded equipment

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant