CN113297831B - 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
CN113297831B
CN113297831B CN202110619290.8A CN202110619290A CN113297831B CN 113297831 B CN113297831 B CN 113297831B CN 202110619290 A CN202110619290 A CN 202110619290A CN 113297831 B CN113297831 B CN 113297831B
Authority
CN
China
Prior art keywords
file
report
excel
generating
html
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.)
Active
Application number
CN202110619290.8A
Other languages
Chinese (zh)
Other versions
CN113297831A (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

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 are 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 electronic table 2003 file; 2) Reading and analyzing the XML file, converting the analyzed content into a corresponding HTML language, generating an HTML file, and realizing conversion of Excel report content and style; 3) Analyzing the function formulas in the XML file, generating automatic calculation and verification rule codes based on the analyzed function formulas, inserting the automatic calculation and verification rule codes into the generated HTML file, and completing the automatic processing of generating the verifiable report webpage by Excel. The invention 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 conversion of a basic function into a JS language verification code.
Background
With the development of enterprise informatization construction, more and more company businesses need to realize online processing. And most of business in the company is concentrated on report form filling, auditing, summarizing and other aspects. In the implementation process of informatization construction, most departments of enterprises adopt an Excel form mode to carry out data reporting, summarization and the like, and an Excel form template is mature. In the system construction, the developer inevitably realizes the conversion from the Excel form template to the HTML webpage.
The current general implementation method comprises the following steps:
Firstly, manually drawing a webpage by a front-end developer according to an Excel template, so as to realize the reproduction of an Excel pattern in a webpage file;
And secondly, adjusting the cell patterns one by one according to the cell data sources in the Excel form. If the data source is input by a user, adding an input label in the cell; if the data source is functionally calculated, a text label is added to the cell.
Thirdly, according to the function formulas of the cells, code logic development and verification rule development of data calculation are carried out, and an automatic calculation function in an Excel form and automatic verification during form submission are achieved.
However, report informatization is performed by means of the existing technology, the whole process consumes a large amount of manpower, occupies a large amount of development time, and is easy to cause problems of write omission, write misplacement and the like due to large data volume, repeated work and the like.
Disclosure of Invention
Aiming at the problems, the invention aims to provide a method and a system for generating a verifiable report webpage by Excel, which can improve the efficiency and the accuracy of converting the existing Excel report into the verifiable report webpage and realize the automation of related conversion work.
In order to achieve the above purpose, the present invention adopts the following technical scheme:
in a first aspect of the present invention, there is provided a method for generating a verifiable report web page by Excel, comprising the steps of: 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 conversion of Excel report content and style; 3) Analyzing the function formulas in the XML file, generating automatic calculation and verification rule codes based on the analyzed function formulas, inserting the automatic calculation and verification rule codes into the generated HTML file, and completing the automatic processing of generating the verifiable report webpage by Excel.
Further, 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 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 The report style data of the obtained Excel report file is spliced and converted into an HTML (hypertext markup language) table character string; 2.3 Writing the obtained HTML form character string into a file, and storing to obtain an HTML file.
Further, in the step 2.1), the report style data includes the number of rows, the number of columns, the cell style and the value of the 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 form character string comprises the following steps: changing the tag attribute ss StyleID of the cell style into the class attribute of td in the HTML file; converting the < Table > tag, < Row > tag, < Cell > tag in the XML file into the < Table > tag, < tr > tag and < td > tag in the HTML file, respectively; the cells of the hollow data in the XML file are converted into < td > tags containing < input > tags.
Further, in the step 3), the function formula in the XML file is parsed, an automatic calculation and verification rule code is generated based on the parsed function formula, and the method for inserting the rule code into the generated HTML file includes the following steps: 3.1 Traversing the XML file to obtain the function formula content corresponding to different cells; 3.2 Packaging the cells and the corresponding function formulas into a MAP set; 3.3 Automatic calculation and verification function code template of configuration function formulas, 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 codes obtained in the step 3.4) into the generated HTML file, and realizing the automatic processing of generating the verifiable report webpage by Excel.
Further, in the step 3.1), the method for obtaining the content of the function formula corresponding to the different cells includes: and acquiring the value ss of the Cell label of the XML file, namely the Formula attribute value, and obtaining a function Formula corresponding to the Cell of the Excel report template file.
In a second aspect of the present invention, there is provided a system for generating a verifiable report web page by Excel, 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; the function analysis module is used for analyzing the function formulas in the XML file, generating automatic calculation and verification rule code strings based on the analyzed function formulas, and inserting the automatic calculation and verification rule code strings into the generated HTML file to realize automatic generation of report webpages by Excel.
Further, the content style parsing module includes: the XML analysis module is used for reading the XML file and analyzing the XML file according to the related labels and the 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 an HTML (hypertext markup language) form character string; and the HTML generation module is used for writing the obtained HTML form character strings into the file and storing the obtained HTML file.
Further, the report style data obtained by the XML parsing module comprises the number of rows, the number of columns, 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 traversing through the XML file to acquire the function formula contents corresponding to different cells; the packaging module is used for packaging the cells and the function formula into a MAP set; the template configuration module is used for configuring a function code template for calculation and verification of a commonly used function formula; the code generation module is used for executing partial code replacement based on the read function formula to generate automatic calculation and verification rule codes; 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 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 generated by analyzing in an XML reading mode, the working efficiency of converting an Excel report into the webpage is improved, and the interference of human factors on the process is reduced. 2. The invention increases the standardization of the generated codes by making the common function formula template. In the whole, by realizing the technology of automatically converting Excel into the computable check webpage, the construction efficiency of the informatization system can be improved, and the workload of front-end developers can be reduced. Therefore, the invention can be widely applied to the Excel conversion field.
Drawings
Fig. 1 is a flowchart of a method for generating a verifiable report web page by Excel according to an embodiment of the present invention.
Detailed Description
The present invention will be described in detail with reference to the accompanying drawings and examples.
As shown in FIG. 1, the method for generating the verifiable report webpage by Excel provided by the invention comprises the following steps:
1) The format of the Excel report file is converted 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 Excel report content and style.
Specifically, the method comprises the following steps:
2.1 Reading the XML file, and analyzing according to the related label and the attribute to obtain the report style data of the Excel report file, wherein the report style data comprises the row number, the column number, the cell style and the value of the Excel report file.
The method can adopt a common method for reading and analyzing the XML file when reading the XML file, for example, the method is implemented based on JAVA language, so that a DOM analysis method is selected.
2.2 The report style data of the obtained Excel report file is spliced and converted into an HTML (hypertext markup language) table character string. Wherein the blank cells are automatically filled with input box labels.
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 hollow 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 hollow data in the Excel file into the < td > tag containing the < input > tag. In addition, the cell style is tag attribute ss StyleID, and is converted into class attribute td in the HTML file through a program. And converting the generated character string, generating an HTML file by a stream output mode, and storing the HTML file locally.
2.3 Writing the obtained HTML form character string into a file, and storing to obtain an HTML file.
3) Analyzing the function formulas in the XML file, generating automatic calculation and verification rule codes based on the analyzed function formulas, inserting the automatic calculation and verification rule codes into the generated HTML file, and completing the automatic processing of generating the verifiable report webpage by Excel.
Specifically, the method comprises the following steps:
3.1 Traversing the XML file to obtain the function formula content corresponding to different cells.
The function formulas in the cells of the Excel report template file are stored in the ss-Formula attribute of the Cell label after being stored in an XML file format, and the function formulas corresponding to the cells of the Excel report template file can be obtained by obtaining the value of the attribute.
3.2 Packaging the cells and the corresponding function formulas into MAP sets so as to realize automatic calculation and verification of batch generation of functional codes.
3.3 Automatic calculation and verification function code templates of configuration function formulas, which contain all function formulas in Excel.
3.4 Cyclic processing step 3.2) the encapsulated MAP set, performing partial code substitution based on the automatic calculation and verification function code template, and generating automatic calculation and verification rule codes corresponding to each cell.
The invention realizes the calculation and verification code templates corresponding to common function formulas in the implementation process, can correspondingly search the corresponding code templates through the function formulas obtained in the step 3.1), and completes the automatic generation of calculation and verification rules through partial code replacement by a program.
For example: d1 cell=a2+b1 in Excel, the function formula is "R1 c [ -3] +rc [ -2]", and the corresponding template is $ (+this+). Val () = $ (one). Val () +). The $this is replaced by the key of map, and the two replacing and splicing are performed because the formula contains two cells. Wherein R1C-3 represents the downward movement of the cell by one line and the leftward movement by 3 lines, to obtain A2, replaced by $ ("A2"). Val () +; RC < -2 > is shifted leftwards by 2 rows to obtain B1, the character string is replaced by $ ("B1"). Val () +, the character strings after the two times of replacement are spliced into $ ("A2"). Val () + $ ("B1"). Val () +, and the last calculation character is deleted to obtain a final calculation code $ ("D1"). Val () = $ ("A2"). 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 the verifiable report webpage by Excel.
Because the step 3.4) has realized a plurality of automatic calculation and check function code strings, code integration is carried out through a program to generate corresponding JS code strings, the corresponding JS code strings are inserted into the correct positions of the HTML files generated in the step 2), and finally, the automatic processing of generating the verifiable report webpage by Excel is completed.
The invention also provides a method for generating the verifiable report webpage based on 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; the function analysis module is used for analyzing the function formulas in the XML file, generating automatic calculation and verification rule code strings based on the analyzed function formulas, and inserting the automatic calculation and verification rule code strings into the generated HTML file to realize automatic generation of report webpages by Excel.
Further, the content style parsing module includes: XML analysis module, data concatenation module and HTML generation module. The XML analysis module is used for reading the XML file and analyzing the XML file according to the related labels and the 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 an HTML (hypertext markup language) table character string; the HTML generation module is used for writing the obtained HTML form character strings into the file and storing the HTML file.
Further, the report style data obtained by the XML parsing module comprises the row 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 the 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 a 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 automatic calculation and verification rule codes; the code insertion module is used for inserting the obtained codes into the generated HTML file, and realizing the automatic processing of generating the verifiable report webpage by Excel.
The foregoing embodiments are only for illustrating the present invention, wherein the structures, connection modes, manufacturing processes, etc. of the components may be changed, and all equivalent changes and modifications performed on the basis of the technical solutions of the present invention should not be excluded from the protection scope of the present invention.

Claims (8)

1. The method for generating the verifiable report webpage by Excel is characterized by comprising the following steps of:
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 conversion of Excel report content and style;
The method 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 The report style data of the obtained Excel report file is spliced and converted into an HTML (hypertext markup language) table character string;
2.3 Writing the obtained HTML form character string into a file, and storing to obtain an HTML file; 3) Analyzing a function formula in an 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 comprises the following steps:
3.1 Traversing the XML file to obtain the function formula content corresponding to different cells;
3.2 Packaging the cells and the corresponding function formulas into a MAP set;
3.3 Automatic calculation and verification function code template of configuration function formulas, 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 codes obtained in the step 3.4) into the generated HTML file, and realizing the automatic processing of generating the verifiable report webpage by Excel.
2. The method of claim 1, wherein in step 2.1), the report style data includes a number of rows, a number of columns, a cell style, and a value of an Excel report file.
3. The method for generating a verifiable report web page by Excel as claimed in claim 1, 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 HTML form character strings is as follows:
changing the tag attribute ss StyleID of the cell style into the class attribute of td in the HTML file;
Converting the < Table > tag, < Row > tag, < Cell > tag in the XML file into the < Table > tag, < tr > tag and < td > tag in the HTML file, respectively;
the cells of the hollow data in the XML file are converted into < td > tags containing < input > tags.
4. The method for generating a verifiable report web page by Excel as claimed in claim 1, wherein in the step 3.1), the method for obtaining the content of the function formulas corresponding to different cells is as follows: and acquiring the value ss of the Cell label of the XML file, namely the Formula attribute value, and obtaining a function Formula corresponding to the Cell of the Excel report template file.
5. A system for generating a verifiable report web page using Excel according to any one of claims 1-4, 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; the function analysis module is used for analyzing the function formulas in the XML file, generating automatic calculation and verification rule code strings based on the analyzed function formulas, and inserting the automatic calculation and verification rule code strings into the generated HTML file to realize automatic generation of report webpages by Excel.
6. The system for generating a verifiable report web page from Excel as claimed in claim 5, wherein: the content style parsing module includes: the XML analysis module is used for reading the XML file and analyzing the XML file according to the related labels and the 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 an HTML (hypertext markup language) form character string; and the HTML generation module is used for writing the obtained HTML form character strings into the file and storing the obtained HTML file.
7. The system for generating a verifiable report web page from Excel as claimed in claim 6 wherein: the report style data obtained by the XML analysis module comprises the row number, the column number, the cell style and the value of the Excel report file.
8. The system for generating a verifiable report web page from Excel as claimed in claim 5, wherein: the function analysis module comprises: the function formula acquisition module is used for traversing through the XML file to acquire the function formula contents corresponding to different cells; the packaging module is used for packaging the cells and the function formula into a MAP set; the template configuration module is used for configuring a function code template for calculation and verification of a commonly used function formula; the code generation module is used for executing partial code replacement based on the read function formula to generate automatic calculation and verification rule codes; 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 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 CN113297831A (en) 2021-08-24
CN113297831B true 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)

Families Citing this family (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
CN116050362B (en) * 2023-03-23 2023-07-04 青岛诺亚信息技术有限公司 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
一种基于Microsoft Excel自动生成HTML表单及打印格式的方法;黄丹群;;电子世界(18);全文 *
基于Web的表格信息抽取研究;秦振海;谭守标;徐超;;计算机技术与发展(02);全文 *

Also Published As

Publication number Publication date
CN113297831A (en) 2021-08-24

Similar Documents

Publication Publication Date Title
CN113297831B (en) Method and system for generating verifiable report webpage by Excel
US7853936B2 (en) Compilation of nested regular expressions
CN103077185A (en) Object-based user-defined information-expanding method
US7523433B1 (en) System and method for automated analysis and hierarchical graphical presentation of application results
CN107391153A (en) A kind of code generating method and device based on Spring Yu MyBatis framework integrations
CN111309313A (en) Method for quickly generating HTML (hypertext markup language) and storing form data
CN101763255A (en) Format conversion method and device of special interface tool
CN113609820A (en) Method, device and equipment for generating word file based on extensible markup language file
Sellink et al. Development, assessment, and reengineering of language descriptions
CN103902269A (en) System and method for generating MIB files through XML files
CN117009422B (en) Method for realizing data import by convenience business personnel
CN114594933A (en) Front-end code generation method and device based on file scanning and storage medium
CN112363706A (en) Nested combination preprocessing method and equipment
CN116521621A (en) Data processing method and device, electronic equipment and storage medium
CN112506488A (en) Method for generating programming language class based on sql creating statement
CN101617307B (en) Encoding/decoding apparatus and method
CN112199626A (en) Dynamic form generation method based on DSL layout engine
CN113239016B (en) Database design assistance apparatus and method
CN105279032A (en) Method and apparatus for synchronizing interface message and javaBean
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
CN108733353B (en) Interface construction method and device
CN112667243A (en) Automatic log adding and code problem searching and positioning method based on go language
CN112114790A (en) Domain code generation method and device based on conceptual data model

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