CN107329756B - Program file generation method and device, storage medium, processor and terminal - Google Patents

Program file generation method and device, storage medium, processor and terminal Download PDF

Info

Publication number
CN107329756B
CN107329756B CN201710517356.6A CN201710517356A CN107329756B CN 107329756 B CN107329756 B CN 107329756B CN 201710517356 A CN201710517356 A CN 201710517356A CN 107329756 B CN107329756 B CN 107329756B
Authority
CN
China
Prior art keywords
program file
preset
editing template
data set
program
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
CN201710517356.6A
Other languages
Chinese (zh)
Other versions
CN107329756A (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.)
Netease Hangzhou Network Co Ltd
Original Assignee
Netease Hangzhou Network 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 Netease Hangzhou Network Co Ltd filed Critical Netease Hangzhou Network Co Ltd
Priority to CN201710517356.6A priority Critical patent/CN107329756B/en
Publication of CN107329756A publication Critical patent/CN107329756A/en
Application granted granted Critical
Publication of CN107329756B publication Critical patent/CN107329756B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms

Abstract

The invention discloses a method and a device for generating a program file, a storage medium, a processor and a terminal. The method comprises the following steps: acquiring configuration information, wherein the configuration information is used for describing a generation process of a program file to be used; and writing the data set to be used into a preset editing template according to the configuration information to generate a program file to be used. The invention solves the technical problems of poor expansibility, weak universality, low stability and limited cross-platform compatibility of an export mode for converting the table into the file which can be used by the application program in the prior art.

Description

Program file generation method and device, storage medium, processor and terminal
Technical Field
The invention relates to the field of computers, in particular to a method and a device for generating a program file, a storage medium, a processor and a terminal.
Background
In the process of game development, based on a design mode of separating business logic and data configuration, it is difficult to avoid the need of separately managing data configuration information. Program function configurations, plan play value configurations, bonus value configurations, skill value configurations, User Interface (UI) text prompt configurations, and the like are collectively referred to as "data". These data are associated with various play logics of the game, and are various and complicated. Therefore, how to effectively configure the data and efficiently read the data for the game becomes a technical problem to be solved.
In general, in the related art, an EXCEL-type spreadsheet is selected for configuring the data. Then, although the EXCEL form itself has a powerful editing function, it is a relatively general pure editing function. If the EXCEL table is directly read in the running process of the game program, excessive hardware resources are consumed, and after all, a certain system overhead is consumed for the reading operation of the EXCEL table.
Table 1 is an EXCEL table describing in-game gain states according to the related art. As shown in the table 1 below, the following examples,
TABLE 1
Numbering Name (R) Remarks for note State description Label (R) Acquisition mode
1 Vertigo (vertigo) Dizziness, inability to perform any operation (omission) (omission)
2 Vertigo immunity Can not be interrupted and vertigo (omission) (omission)
3 Fear of (omission) (omission)
4 Fear immunity (omission) (omission)
5 Body-shaping device Can not move (omission) (omission)
6 Body-shaping immunity Is not influenced by body shaping and speed reduction (omission) (omission)
Each column corresponds to a data class (for example, the first column indicates a number, the second column indicates a name of a gain state, the third column indicates remark information, and the fourth column indicates description of state information), the first row is a general description of each column of data classes, and it can be understood that, starting from the third row, each row corresponds to a data class. Therefore, the simplest application mode can directly read the EXCEL form data during the running of the application program, and arrange and use the EXCEL form data according to the format required by the application program.
However, because direct reading of EXCEL forms occurs to some extent during application execution, it is common in the industry to pre-derive form data and convert the pre-derived form data into a format that is more quickly recognizable by the application language. The EXCEL form data is read and a code file is generated, typically using the syntactic data structure of the programming language used by the application, a process referred to simply as "export".
The export process provided in the related art typically requires writing a corresponding export program for each EXCEL form. There is a strong correlation between the file format exported and the programming language used by the application. This approach has the following drawbacks:
(1) the expansibility is poor: when an EXCEL form is added, an export program matched with the EXCEL form needs to be written.
(2) The universality is weak: if the form EXCEL is provided for use by other applications that use different programming languages, then all of the exporters need to be modified.
(3) The stability is low: for the reasons set forth in (1) and (2), new export logic needs to be continuously copied, and the fault tolerance is low.
(4) Cross-platform compatibility is limited: partial project export tools also suffer from cross-platform incompatibility, as export programs may use platform-dependent Application Programming Interfaces (APIs).
In view of the above problems, no effective solution has been proposed.
Disclosure of Invention
The embodiment of the invention provides a method, a device, a storage medium, a processor and a terminal for generating a program file, which are used for at least solving the technical problems of poor expansibility, poor universality, low stability and limited cross-platform compatibility of an export mode for converting a table into a file which can be used by an application program in the related art.
According to an embodiment of the present invention, a method for generating a program file is provided, including:
acquiring configuration information, wherein the configuration information is used for describing a generation process of a program file to be used; and writing the data set to be used into a preset editing template according to the configuration information to generate a program file to be used.
Optionally, the configuration information at least includes: the method comprises the following steps of presetting first identification information of an editing template, second identification information of an original data set, a coding mode of a program file, and a storage position and a name of the program file, writing a data set to be used into the preset editing template according to configuration information, and generating the program file to be used, wherein the generation of the program file to be used comprises the following steps: converting the original data set into a data set to be used according to the second identification information and a preset programming language; writing a data set to be used into a preset editing template according to the first identification information, wherein an editing language adopted by the preset editing template is associated with a preset programming language; and generating and exporting a program file from the preset editing template according to the coding mode, the storage position and the name.
Optionally, writing the data set to be used into the preset editing template according to the first identification information includes: acquiring a preset editing template according to the first identification information; searching a region to be filled guided by the filling identifier in a preset editing template; acquiring data to be filled from a data set to be used according to initial data content in the area to be filled; and writing the data to be filled into the area to be filled.
Alternatively, the file format of the program file is determined by the file format of the preset editing template and the file format of the program file is recognized by the preset programming language.
According to an embodiment of the present invention, there is also provided a program file generating apparatus, including:
the device comprises an acquisition module, a processing module and a processing module, wherein the acquisition module is used for acquiring configuration information, and the configuration information is used for describing the generation process of a program file to be used; and the generating module is used for writing the data set to be used into the preset editing template according to the configuration information to generate a program file to be used.
Optionally, the configuration information at least includes: presetting first identification information of an editing template, second identification information of an original data set, a coding mode of a program file, and a storage position and a name of the program file, wherein the generation module comprises: the processing unit is used for converting the original data set into a data set to be used according to the second identification information and a preset programming language; the writing unit is used for writing the data set to be used into a preset editing template according to the first identification information, wherein the editing language adopted by the preset editing template is associated with the preset programming language; and the generating unit is used for generating and exporting the program file from the preset editing template according to the coding mode, the storage position and the name.
Optionally, the writing unit includes: the first obtaining subunit is used for obtaining the preset editing template according to the first identification information; the searching subunit is used for searching the area to be filled guided by the filling identifier in the preset editing template; the second acquiring subunit is used for acquiring the data to be filled from the data set to be used according to the initial data content in the area to be filled; and the writing subunit is used for writing the data to be filled into the area to be filled.
Alternatively, the file format of the program file is determined by the file format of the preset editing template and the file format of the program file is recognized by the preset programming language.
According to an embodiment of the present invention, there is further provided a storage medium including a stored program, where the apparatus on which the storage medium is located is controlled to execute the method for generating the program file when the program runs.
According to an embodiment of the present invention, there is further provided a processor, configured to execute a program, where the program executes the method for generating the program file.
According to an embodiment of the present invention, there is also provided a terminal, including: one or more processors, a memory, a display device, and one or more programs, wherein the one or more programs are stored in the memory and configured to be executed by the one or more processors, the one or more programs including a generating method for executing the program file.
In the embodiment of the invention, the mode of obtaining the configuration information for describing the generation process of the program file to be used is adopted, the data set to be used is written into the preset editing template according to the configuration information to generate the program file to be used, and the problem that a corresponding export program needs to be written for each piece of form data is avoided, so that the technical effects of good expansibility, strong universality, high stability and strong cross-platform compatibility are achieved, and the technical problems that the export mode for converting the form into the file which can be used by the application program in the related technology is poor in expansibility, weak in universality, low in stability and limited in cross-platform compatibility are solved.
Drawings
The accompanying drawings, which are included to provide a further understanding of the invention and are incorporated in and constitute a part of this application, illustrate embodiment(s) of the invention and together with the description serve to explain the invention without limiting the invention. In the drawings:
FIG. 1 is a flow diagram of a method of generating a program file according to one embodiment of the invention;
fig. 2 is a block diagram of a structure of a program file generation apparatus according to an embodiment of the present invention;
fig. 3 is a block diagram of a program file generating apparatus according to a preferred embodiment of the present invention.
Detailed Description
In order to make the technical solutions of the present invention better understood, the technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
It should be noted that the terms "first," "second," and the like in the description and claims of the present invention and in the drawings described above are used for distinguishing between similar elements and not necessarily for describing a particular sequential or chronological order. It is to be understood that the data so used is interchangeable under appropriate circumstances such that the embodiments of the invention described herein are capable of operation in sequences other than those illustrated or described herein. Furthermore, the terms "comprises," "comprising," and "having," and any variations thereof, are intended to cover a non-exclusive inclusion, such that a process, method, system, article, or apparatus that comprises a list of steps or elements is not necessarily limited to those steps or elements expressly listed, but may include other steps or elements not expressly listed or inherent to such process, method, article, or apparatus.
In accordance with one embodiment of the present invention, there is provided an embodiment of a method for generating a program file, it should be noted that the steps illustrated in the flowchart of the accompanying drawings may be performed in a computer system such as a set of computer-executable instructions, and that while a logical order is illustrated in the flowchart, in some cases the steps illustrated or described may be performed in an order different than here.
Fig. 1 is a flowchart of a method for generating a program file according to an embodiment of the present invention, as shown in fig. 1, the method includes the following steps:
step S12, obtaining configuration information, wherein the configuration information is used for describing the generation process of the program file to be used;
and step S14, writing the data set to be used into a preset editing template according to the configuration information, and generating a program file to be used.
Through the steps, the mode of obtaining the configuration information for describing the generation process of the program file to be used can be adopted, the data set to be used is written into the preset editing template according to the configuration information, the program file to be used is generated, and the problem that a corresponding export program needs to be written for each form data is avoided, so that the technical effects of good expansibility, strong universality, high stability and strong cross-platform compatibility are achieved, and the technical problems that the export mode for converting the form into the file which can be used by the program in the related technology is poor in expansibility, weak in universality, low in stability and limited in cross-platform compatibility are solved.
Optionally, the configuration information may include, but is not limited to: in step S14, the data set to be used is written into the preset editing template according to the configuration information, and generating the program file to be used may include the following steps:
step S141, converting the original data set into a data set to be used according to the second identification information and a preset programming language;
step S142, writing a data set to be used into a preset editing template according to the first identification information, wherein the editing language adopted by the preset editing template is associated with the preset programming language;
and step S143, generating and exporting the program file from the preset editing template according to the coding mode, the storage position and the name.
In a preferred embodiment, the configuration information may be a configuration page of a table. Table 2 is an example of a configuration page according to a preferred embodiment of the present invention, as shown in table 2,
TABLE 2
Figure BDA0001336924860000061
Taking the configuration item generation file 1 as an example, each configuration item in the configuration information (i.e. each row in the table, which is used to describe a data reading behavior) may include, but is not limited to:
(1) pat (corresponding to the first identification information of the preset editing template);
(2) ALL _ short _ GEN (corresponding to the second identification information of the original data set);
(3) utf-8 (corresponding to the encoding method of the program file);
(4) Client/Data/buffdata py (corresponding to the storage location and name of the program file);
furthermore, the configuration information may also include additional description of the derivation process, such as:
(1) ALL _ pages, which means reading ALL pages;
(2) "Filter" means the column with the filter condition in the read table data.
Based on the configuration information, python can be selected as a programming language. Reading ALL _ SHEET _ GEN table data (equivalent to an original data set) by using an xlrd library of python, sorting and checking the data in rows, and then forming a python dictionary (equivalent to a data set to be used) in an internal memory.
The sorting process may store the number of each row of data in the table data and the description content corresponding to the number in a python dictionary form of a key-value pair.
The verification process may check the data read from each cell according to a predefined security condition, wherein the security condition may include, but is not limited to, at least one of the following:
(1) no _ empty: indicating that the cell cannot be empty;
(2) min: representing the minimum value of the value range of the data in the cell;
(3) max: representing the maximum value of the value range of the data in the cell;
(4) enum: the data in the presentation cell can only configure the values set in the enumeration.
It should be noted that, because the python language has a cross-platform characteristic, the python code can normally run in various mainstream operating systems such as Windows and Linux. Therefore, the preferred embodiment of the present invention is described in the python language. In addition, considering that dictionaries are data structures provided by almost every type of programming language, other types of programming languages may implement similar functions, as exemplified by python. In addition, if multiple EXCEL tables exist in the data reading process, the multiple EXCEL tables can be processed in parallel by using multiple processes, so that the data processing efficiency is further improved.
Optionally, in step S142, writing the data set to be used into the preset editing template according to the first identification information may include the following steps:
step S1421, acquiring a preset editing template according to the first identification information;
step S1422, searching a region to be filled, which is guided by the filling identifier, in a preset editing template;
step S1423, acquiring data to be filled from a data set to be used according to the initial data content in the area to be filled;
in step S1424, the data to be filled is written into the area to be filled.
The preset editing template can be written by selecting Jinja2 (a template language based on Python language), and has the advantages that: the method has the advantages that the operation speed is high, the cross-platform compatibility is strong, the method is widely used, and then the Jinja2 is used as an intermediate link to execute data export operation, so that the program file to be used is finally obtained.
In writing the data set to be used into the preset editing template, as shown in table 2 above, the preset editing template may be first obtained according to a _ common sheet data. Secondly, searching a region to be filled guided by a filling identifier from a preset editing template, wherein the filling identifier is usually represented as { "," {% ", so that a region between the symbol" { "and the symbol" } "and a region between the symbol" {% "and the symbol"% } "can be determined as the region to be filled. Then, obtaining data to be filled from the data set to be used according to the initial data content in the area to be filled, and writing the data to be filled into the area to be filled, for example: one of the lines in the preset edit template is shown as: # xls { { xls } }, it means that the region between the symbol "{" and the symbol "} } can be replaced with the read table name.
In a preferred implementation, the file format of the program file is determined by the file format of the pre-set edit template and the file format of the program file is recognized by the pre-set programming language.
Since the templates edited using the Jinja2 template language are independent of the programming language, the format that the exported program file will ultimately take is determined by the grammatical format selected for the template file corresponding to the particular programming language. Therefore, if it is desired that the file format of the program file be recognized by a preset programming language, the template need be edited into a style conforming to the syntax of the programming language. Therefore, the template has the characteristics of high flexibility, strong reusability and good expansibility. In the preferred embodiment, the template file is typically identified by the end of the. pat, with the EXCEL data and the. pat file ultimately generating a program file that can be recognized by the python language.
Furthermore, if it is not desired to generate a program file that can be identified by the python language, then the pat file may also be modified in a syntax format corresponding to other programming languages.
According to an embodiment of the present invention, there is further provided an embodiment of a program file generating apparatus, and fig. 2 is a block diagram of a structure of the program file generating apparatus according to an embodiment of the present invention, and as shown in fig. 2, the apparatus may include: an obtaining module 10, configured to obtain configuration information, where the configuration information is used to describe a generation process of a program file to be used; and the generating module 20 is configured to write the data set to be used into the preset editing template according to the configuration information, and generate a program file to be used.
Optionally, fig. 3 is a block diagram of a structure of a device for generating a program file according to a preferred embodiment of the present invention, and as shown in fig. 3, the configuration information may include, but is not limited to: presetting first identification information of an editing template, second identification information of an original data set, a coding mode of a program file, and a storage location and a name of the program file, and the generating module 20 may include: the processing unit 200 is configured to convert the original data set into a data set to be used according to the second identification information and a preset programming language; a writing unit 202, configured to write a data set to be used into a preset editing template according to the first identification information, where an editing language adopted by the preset editing template is associated with a preset programming language; and the generating unit 204 is used for generating and exporting the program file from the preset editing template according to the coding mode, the storage position and the name.
Alternatively, the writing unit 202 includes: a first obtaining subunit (not shown in the figure) configured to obtain a preset editing template according to the first identification information; a searching subunit (not shown in the figure) for searching the area to be filled guided by the filling identifier in the preset editing template; a second obtaining subunit (not shown in the figure), configured to obtain data to be filled from the data set to be used according to the initial data content in the area to be filled; and a writing subunit (not shown in the figure) for writing the data to be filled into the area to be filled.
In a preferred implementation, the file format of the program file is determined by the file format of the pre-set edit template and the file format of the program file is recognized by the pre-set programming language.
According to an embodiment of the present invention, there is further provided a storage medium including a stored program, where the apparatus on which the storage medium is located is controlled to execute the method for generating the program file when the program runs. The storage medium may include, but is not limited to: various media capable of storing program codes, such as a U disk, a Read Only Memory (ROM), a Random Access Memory (RAM), a removable hard disk, a magnetic disk, or an optical disk.
According to an embodiment of the present invention, there is further provided a processor, where the processor is configured to execute a program, and the program executes the method for generating the program file. The processor may include, but is not limited to: a Microprocessor (MCU) or a programmable logic device (FPGA), etc.
According to an embodiment of the present invention, there is also provided a terminal, including: one or more processors, a memory, a display device, and one or more programs, wherein the one or more programs are stored in the memory and configured to be executed by the one or more processors, the programs comprising instructions for performing the above-described program file generation method. In some embodiments, the terminal may be a terminal device such as a smart phone (e.g., an Android phone, an iOS phone, etc.), a tablet computer, a palmtop computer, and a Mobile Internet Device (MID), a PAD, and the like. The display device may be a touch screen type Liquid Crystal Display (LCD) that enables a user to interact with a user interface of the terminal. In addition, the terminal may further include: an input/output interface (I/O interface), a Universal Serial Bus (USB) port, a network interface, a power source, and/or a camera.
The above-mentioned serial numbers of the embodiments of the present invention are merely for description and do not represent the merits of the embodiments.
In the above embodiments of the present invention, the descriptions of the respective embodiments have respective emphasis, and for parts that are not described in detail in a certain embodiment, reference may be made to related descriptions of other embodiments.
In the embodiments provided in the present application, it should be understood that the disclosed technology can be implemented in other ways. The above-described embodiments of the apparatus are merely illustrative, and for example, the division of the units may be a logical division, and in actual implementation, there may be another division, for example, multiple units or components may be combined or integrated into another system, or some features may be omitted, or not executed. In addition, the shown or discussed mutual coupling or direct coupling or communication connection may be an indirect coupling or communication connection through some interfaces, units or modules, and may be in an electrical or other form.
The units described as separate parts may or may not be physically separate, and parts displayed as units may or may not be physical units, may be located in one place, or may be distributed on a plurality of units. Some or all of the units can be selected according to actual needs to achieve the purpose of the solution of the embodiment.
In addition, functional units in the embodiments of the present invention may be integrated into one processing unit, or each unit may exist alone physically, or two or more units are integrated into one unit. The integrated unit can be realized in a form of hardware, and can also be realized in a form of a software functional unit.
The integrated unit, if implemented in the form of a software functional unit and sold or used as a stand-alone product, may be stored in a computer readable storage medium. Based on such understanding, the technical solution of the present invention may be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention.
The foregoing is only a preferred embodiment of the present invention, and it should be noted that, for those skilled in the art, various modifications and decorations can be made without departing from the principle of the present invention, and these modifications and decorations should also be regarded as the protection scope of the present invention.

Claims (9)

1. A method for generating a program file, comprising:
acquiring configuration information, wherein the configuration information is used for describing a generation process of a program file to be used;
writing a data set to be used into a preset editing template according to the configuration information to generate a program file to be used;
wherein the configuration information at least comprises: writing the data set to be used into the preset editing template according to the configuration information, and generating the program file to be used includes: converting the original data set into the data set to be used according to the second identification information and a preset programming language; writing the data set to be used into the preset editing template according to the first identification information, wherein the editing language adopted by the preset editing template is associated with the preset programming language; and generating and exporting the program file from the preset editing template according to the coding mode and the storage position and name.
2. The method of claim 1, wherein writing the set of data to be used to the pre-edit template according to the first identification information comprises:
acquiring the preset editing template according to the first identification information;
searching a region to be filled guided by a filling identifier in the preset editing template;
acquiring data to be filled from the data set to be used according to the initial data content in the area to be filled;
and writing the data to be filled into the area to be filled.
3. The method according to claim 1, wherein the file format of the program file is determined by the file format of the pre-set editing template and the file format of the program file is recognized by the pre-set programming language.
4. An apparatus for generating a program file, comprising:
the device comprises an acquisition module, a processing module and a processing module, wherein the acquisition module is used for acquiring configuration information, and the configuration information is used for describing the generation process of a program file to be used;
the generating module is used for writing the data set to be used into a preset editing template according to the configuration information and generating the program file to be used;
wherein the configuration information at least comprises: the first identification information of the preset editing template, the second identification information of the original data set, the coding mode of the program file, and the storage position and name of the program file, wherein the generating module comprises: the processing unit is used for converting the original data set into the data set to be used according to the second identification information and a preset programming language; a writing unit, configured to write the data set to be used into the preset editing template according to the first identification information, where an editing language adopted by the preset editing template is associated with the preset programming language; and the generating unit is used for generating and exporting the program file from the preset editing template according to the coding mode, the storage position and the name.
5. The apparatus of claim 4, wherein the write unit comprises:
the first obtaining subunit is configured to obtain the preset editing template according to the first identification information;
the searching subunit is used for searching the area to be filled guided by the filling identifier in the preset editing template;
the second acquiring subunit is configured to acquire data to be filled from the data set to be used according to the initial data content in the region to be filled;
and the writing subunit is used for writing the data to be filled into the area to be filled.
6. The apparatus of claim 4, wherein the file format of the program file is determined by the file format of the pre-set editing template and the file format of the program file is recognized by the pre-set programming language.
7. A storage medium, characterized in that the storage medium includes a stored program, wherein, when the program runs, a device in which the storage medium is located is controlled to execute the generation method of the program file according to any one of claims 1 to 3.
8. A processor, configured to execute a program, wherein the program executes the program file generation method according to any one of claims 1 to 3.
9. A terminal, comprising: one or more processors, a memory, a display device, and one or more programs, wherein the one or more programs are stored in the memory and configured to be executed by the one or more processors, the one or more programs comprising instructions for performing the method of generating a program file of any of claims 1-3.
CN201710517356.6A 2017-06-29 2017-06-29 Program file generation method and device, storage medium, processor and terminal Active CN107329756B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710517356.6A CN107329756B (en) 2017-06-29 2017-06-29 Program file generation method and device, storage medium, processor and terminal

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710517356.6A CN107329756B (en) 2017-06-29 2017-06-29 Program file generation method and device, storage medium, processor and terminal

Publications (2)

Publication Number Publication Date
CN107329756A CN107329756A (en) 2017-11-07
CN107329756B true CN107329756B (en) 2020-06-26

Family

ID=60197939

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710517356.6A Active CN107329756B (en) 2017-06-29 2017-06-29 Program file generation method and device, storage medium, processor and terminal

Country Status (1)

Country Link
CN (1) CN107329756B (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110704038B (en) * 2019-09-05 2022-08-19 苏州浪潮智能科技有限公司 Python dictionary data processing method, device and equipment
CN111857028B (en) * 2020-06-24 2022-05-27 广州明珞汽车装备有限公司 PLC program generation method, system, equipment and storage medium
CN112016912A (en) * 2020-07-08 2020-12-01 广州乐摇摇信息科技有限公司 Service access method, device, storage medium and electronic device

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1841362A (en) * 2005-03-31 2006-10-04 国际商业机器公司 Method and system for processing an electronic form
CN102184166A (en) * 2011-05-09 2011-09-14 江西省电力公司信息通信中心 Method for converting Excel form into InfoPath form based on office software
CN102231162A (en) * 2011-07-01 2011-11-02 福建富士通信息软件有限公司 Dynamic rule engine configuration method based on service processing
CN103778107A (en) * 2012-10-25 2014-05-07 上海宝信软件股份有限公司 Method and platform for quickly and dynamically generating form based on EXCEL
CN103914438A (en) * 2012-12-30 2014-07-09 航天信息股份有限公司 Template and tag implementation based excel display and export method and system
CN104383684A (en) * 2014-11-21 2015-03-04 珠海金山网络游戏科技有限公司 Universal game state control system and method
CN106293770A (en) * 2016-08-24 2017-01-04 珠海金山网络游戏科技有限公司 The general of a kind of table data leads table system and method

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6948134B2 (en) * 2000-07-21 2005-09-20 Microsoft Corporation Integrated method for creating a refreshable Web Query

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1841362A (en) * 2005-03-31 2006-10-04 国际商业机器公司 Method and system for processing an electronic form
CN102184166A (en) * 2011-05-09 2011-09-14 江西省电力公司信息通信中心 Method for converting Excel form into InfoPath form based on office software
CN102231162A (en) * 2011-07-01 2011-11-02 福建富士通信息软件有限公司 Dynamic rule engine configuration method based on service processing
CN103778107A (en) * 2012-10-25 2014-05-07 上海宝信软件股份有限公司 Method and platform for quickly and dynamically generating form based on EXCEL
CN103914438A (en) * 2012-12-30 2014-07-09 航天信息股份有限公司 Template and tag implementation based excel display and export method and system
CN104383684A (en) * 2014-11-21 2015-03-04 珠海金山网络游戏科技有限公司 Universal game state control system and method
CN106293770A (en) * 2016-08-24 2017-01-04 珠海金山网络游戏科技有限公司 The general of a kind of table data leads table system and method

Also Published As

Publication number Publication date
CN107329756A (en) 2017-11-07

Similar Documents

Publication Publication Date Title
CN107229750B (en) Table data processing method, device, storage medium and processor
CN107329756B (en) Program file generation method and device, storage medium, processor and terminal
CN102375746A (en) Method and device for enabling input method to self-adapt to application program
CN108846069B (en) Document execution method and device based on markup language
US10684826B2 (en) Method and device for page rendering and validation
WO2018001068A1 (en) Web page link access method and device, and mobile terminal
CN110956678B (en) Font processing method and device
CN103095726A (en) Processing method and device of protocol interpreter
CN109471893B (en) Network data query method, equipment and computer readable storage medium
CN110955714A (en) Method and device for converting unstructured text into structured text
CN111310232A (en) Data desensitization method and device, electronic equipment and storage medium
CN110889266A (en) Conference record integration method and device
CN111142871B (en) Front-end page development system, method, equipment and medium
CN104536947A (en) Layout document processing method and device
CN108132783A (en) A kind of configuration method and device of Web App
CN110989999A (en) Code generation method and device, electronic equipment and medium
CN110633258A (en) Log insertion method, device, computer device and storage medium
CN109582411A (en) Graphical user interface creating method, device, computer equipment and storage medium
CN115544973A (en) Document generation method and device, electronic equipment and storage medium
CN103136166A (en) Method and device for font determination
CN113703753B (en) Method and device for product development and product development system
CN115310127A (en) Data desensitization method and device
CN109828759A (en) Code compiling method, device, computer installation and storage medium
CN110263303B (en) Method and device for tracing text modification history
CN114218261A (en) Data query method and device, storage medium and electronic 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