CN112051999B - Configurable download file generation method and device - Google Patents

Configurable download file generation method and device Download PDF

Info

Publication number
CN112051999B
CN112051999B CN202010916896.3A CN202010916896A CN112051999B CN 112051999 B CN112051999 B CN 112051999B CN 202010916896 A CN202010916896 A CN 202010916896A CN 112051999 B CN112051999 B CN 112051999B
Authority
CN
China
Prior art keywords
node
unit
processing
writing
file
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
CN202010916896.3A
Other languages
Chinese (zh)
Other versions
CN112051999A (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.)
Bank of China Ltd
Original Assignee
Bank of China 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 Bank of China Ltd filed Critical Bank of China Ltd
Priority to CN202010916896.3A priority Critical patent/CN112051999B/en
Publication of CN112051999A publication Critical patent/CN112051999A/en
Application granted granted Critical
Publication of CN112051999B publication Critical patent/CN112051999B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/36Software reuse
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/61Installation

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method and a device for generating configured download files, wherein the method comprises the following steps: configuring nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is the abstraction of each row of the download file to be generated, the node processing class is the class for processing the node, and the node processing rule is the use rule of the node; configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit; writing in node data items through the node processing class according to the node processing rule; writing in the unit data item through the unit processing class according to the unit processing rule; and generating a download file according to the writing result of the node data item and the unit data item. The invention can improve the reusability and the readability of codes and reduce the maintenance cost.

Description

Configurable download file generation method and device
Technical Field
The present invention relates to the field of file processing technologies, and in particular, to a method and an apparatus for generating a configured downloaded file.
Background
This section is intended to provide a background or context to the embodiments of the invention that are recited in the claims. The description herein is not admitted to be prior art by inclusion in this section.
File downloading is a very commonly used function of a system, and currently, for a file generation method of a downloading class, a set of file generation program is developed for each file according to the same data item and according to various files supported by the system for downloading.
Although the final goal of file generation and download can be achieved, the following problems exist:
1. poor reusability
The data items are identical from file to file, although in different formats, as are the check logic for the various fields. And the related processing is carried out according to files with different formats, the same processing process needs to be repeated, so that code redundancy is caused, and reusability is poor.
2. Poor readability
Because of more data items and scattered judgment logic, code readability is poor especially when the processing class or the method structure is complex.
3. High maintenance cost
Once the business needs to add new data items or modify the judging logic of the existing data items, the new data items need to be positioned and modified according to different file formats, and in addition, if the number of the data items is large, the sequence of the fields of the file data items in different formats is easy to be inconsistent or the processing logic is inconsistent, so that the maintenance cost is high.
Disclosure of Invention
The embodiment of the invention provides a configured download file generation method, which is used for improving the reusability and the readability of codes and reducing the maintenance cost, and comprises the following steps:
Configuring nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
Configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
Writing in node data items of the download file to be generated through the node processing class according to the node processing rule; if the node data item is written abnormally, ending the file generation;
Writing in unit data items of the download file to be generated according to unit processing rules through unit processing classes; if the writing of the unit data item is abnormal, ending the file generation; otherwise:
Checking whether unwritten data items exist, if so, returning to the download file to be generated, and writing the node data items through the node processing class according to the node processing rule; if the checking process is abnormal, ending the file generation;
and generating a download file according to the writing result of the node data item and the writing result of the unit data item.
The embodiment of the invention also provides a configured download file generating device, which is used for improving the reusability and the readability of codes and reducing the maintenance cost, and the device comprises:
The node configuration module is used for configuring nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
the unit configuration module is used for configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
the node writing module is used for writing the node data item through the node processing class according to the node processing rule of the download file to be generated; if the node data item is written abnormally, ending the file generation;
The unit writing module is used for writing the unit data item through the unit processing class according to the unit processing rule of the download file to be generated; if the writing of the unit data item is abnormal, ending the file generation;
The node writing module is also used for checking whether the unwritten data items exist or not, if yes, returning the download file to be generated, and writing the node data items through the node processing class according to the node processing rule; if the checking process is abnormal, ending the file generation;
And the file generation module is used for generating a download file according to the writing result of the node data item and the writing result of the unit data item when the unwritten data item does not exist.
The embodiment of the invention also provides computer equipment, which comprises a memory, a processor and a computer program stored on the memory and capable of running on the processor, wherein the processor realizes the configured download file generation method when executing the computer program.
The embodiment of the invention also provides a computer readable storage medium storing a computer program for executing the configured download file generation method.
In the embodiment of the invention, nodes, node processing classes and node processing rules are configured according to the structure of the download file to be generated; configuring units, unit processing classes and unit processing rules according to the structure of the nodes; writing the node data items into the generated download file through the node processing class according to the node processing rule, and writing the unit data items through the unit processing class according to the unit processing rule; generating a download file according to the writing result of the node data item and the writing result of the unit data item; compared with the technical scheme of developing a set of file generation program for each file in the prior art, the generation of the downloaded file is realized in a configuration mode, so that the configuration is not required to be modified as long as the structure of the file is not changed, the reusability and the readability of codes are improved, and the maintenance cost is reduced.
Drawings
In order to more clearly illustrate the embodiments of the invention or the technical solutions in the prior art, the drawings that are required in the embodiments or the description of the prior art will be briefly described, it being obvious that the drawings in the following description are only some embodiments of the invention, and that other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art. In the drawings:
FIG. 1 is a schematic diagram of a method for generating configured download files according to an embodiment of the present invention;
FIG. 2 is a diagram showing an embodiment of a method for generating a configured download file according to an embodiment of the present invention;
FIG. 3 is a diagram illustrating a parallel generation of download files according to an embodiment of the present invention;
FIG. 4 is a schematic diagram of a download file generating apparatus configured in an embodiment of the present invention;
Fig. 5 is a schematic diagram of a computer device according to an embodiment of the present invention.
Detailed Description
For the purpose of making the objects, technical solutions and advantages of the embodiments of the present invention more apparent, the embodiments of the present invention will be described in further detail with reference to the accompanying drawings. The exemplary embodiments of the present invention and their descriptions herein are for the purpose of explaining the present invention, but are not to be construed as limiting the invention.
In order to improve reusability and readability of codes and reduce maintenance cost, an embodiment of the present invention provides a configured download file generating method, as shown in fig. 1, including:
Step 101, configuring nodes, node processing classes and node processing rules according to the structure of a download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
Step 102, configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
step 103, writing in node data items through node processing classes according to the node processing rules of the download file to be generated;
104, writing the unit data item into the download file to be generated according to the unit processing rule through the unit processing class;
Step 105, generating a download file according to the writing result of the node data item and the writing result of the unit data item.
As can be seen from the flow shown in fig. 1, in the embodiment of the present invention, according to the structure of the download file to be generated, the nodes, the node processing classes and the node processing rules are configured; configuring units, unit processing classes and unit processing rules according to the structure of the nodes; as long as the structure of the file is unchanged, configuration is not required to be modified; the method comprises the steps of writing in node data items through node processing classes according to node processing rules, writing in unit data items through unit processing classes according to unit processing rules, and generating downloaded files according to writing-in results of the node data items and writing-in results of the unit data items.
In specific implementation, according to the structure of the download file to be generated, the nodes, the node processing classes and the node processing rules are configured. In an embodiment, the nodes may include batch nodes and detail nodes; wherein the batch node may include file header information; the detail nodes may include file detail information for generating file content. In addition, in the embodiment, the batch node may further include public information corresponding to the detail node. Therefore, the file can be abstracted into two parts of batch nodes and detail nodes according to the file structure, and the file generation process is configured according to various nodes.
In an embodiment, configuring the node processing class may include: configuring node related information in a node processing class; the node-related information may include information such as field order and/or delimiter in the node. Of course, it can be understood that the field sequence and the separator are examples of the node related information, and different node related information can be configured according to actual requirements during implementation.
It can be understood that for a plurality of download files to be generated in the same category with the same structure, batch generation of the download files can be realized by only one configuration; no configuration modification is required unless the file structure changes.
For a plurality of download files to be generated in the same category with the same structure, parallel generation of the download files can be realized. That is, in the above-described embodiment:
The writing of the node data item by the node processing class according to the node processing rule of the generated download file can comprise: writing node data items into a plurality of to-be-generated download files belonging to the same category in parallel;
To the generated download file, writing the unit data item through the unit processing class according to the unit processing rule may include: writing unit data items into a plurality of to-be-generated download files belonging to the same category in parallel;
Generating the download file according to the data item writing result of the node and the data item writing result of the unit may include: and generating the download files in parallel for a plurality of download files to be generated, which belong to the same category.
FIG. 2 is a diagram illustrating a specific example of a method for generating a configured download file according to an embodiment of the present invention, as shown in FIG. 2, the method for generating a configured download file according to the present invention may include:
Step 201, after file generation starts, configuring nodes, node processing classes and node processing rules according to the structure of a downloaded file to be generated; configuring units, unit processing classes and unit processing rules according to the structure of the nodes;
Step 202, writing in node data items through node processing classes according to a node processing rule of a download file to be generated; if the node data item is written abnormally, ending the file generation;
Step 203, writing in a unit data item through a unit processing class according to a unit processing rule of a download file to be generated; if the writing of the unit data item is abnormal, ending the file generation;
Step 204, checking whether there is an unwritten data item, if so, returning to step 202, otherwise, continuing to execute step 205; if the checking process is abnormal, ending the file generation;
Step 205, generating a download file according to the writing result of the node data item and the writing result of the unit data item, and ending the file generation.
FIG. 3 is a diagram showing a specific example of parallel generation of download files in an embodiment of the present invention, as shown in FIG. 3, for a plurality of download files (download files 1-N) to be generated in the same category with the same structure, parallel generation of the download files is implemented, wherein the parallel generation includes writing of node data items; writing unit data items in parallel; and generating the download file in parallel.
The embodiment of the invention also provides a configured download file generating device, which is described in the following embodiment. Because the principle of the device for solving the problem is similar to that of the configured download file generation method, the implementation of the device can refer to the implementation of the configured download file generation method, and the repetition is omitted.
FIG. 4 is a schematic diagram of a device for generating a configured download file according to an embodiment of the present invention, as shown in FIG. 4, where the device includes:
The node configuration module 401 is configured to configure nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
A unit configuration module 402, configured to configure units, unit processing classes, and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
the node writing module 403 is configured to write a node data item into a download file to be generated according to a node processing rule through a node processing class;
The unit writing module 404 is configured to write a unit data item into a download file to be generated according to a unit processing rule through a unit processing class;
The file generating module 405 is configured to generate a download file according to the writing result of the node data item and the writing result of the unit data item.
In one embodiment, the nodes may include batch nodes and detail nodes; wherein the batch node may include file header information; the detail nodes may include file detail information for generating file content.
In one embodiment, the batch node may also include public information corresponding to the detail node.
In one embodiment, the node configuration module 401 may be specifically configured to:
Configuring node related information in a node processing class; wherein the node related information comprises field order and/or delimiters in the node.
In one embodiment, the node writing module 403 may specifically be configured to:
Writing node data items into a plurality of to-be-generated download files belonging to the same category in parallel;
The unit writing module 404 may specifically be configured to:
writing unit data items into a plurality of to-be-generated download files belonging to the same category in parallel;
The file generation module 405 may be specifically configured to:
Generating download files in parallel for a plurality of download files to be generated, wherein the download files belong to the same category;
The download files to be generated in the same category have the same structure.
An embodiment of the present application further provides a computer device, and fig. 5 is a schematic diagram of a computer device in the embodiment of the present application, where the computer device is capable of implementing all the steps in the configured download file generation method in the foregoing embodiment, and the computer device specifically includes the following contents:
A processor (processor) 501, a memory (memory) 502, a communication interface (Communications Interface) 503, and a communication bus 504;
Wherein the processor 501, the memory 502, and the communication interface 503 perform communication with each other through the communication bus 504; the communication interface 503 is used for implementing information transmission between related devices;
The processor 501 is configured to invoke a computer program in the memory 502, and when the processor executes the computer program, the processor implements all the steps in the configured download file generation method in the above embodiment.
The embodiment of the invention also provides a computer readable storage medium storing a computer program for executing the configured download file generation method.
In summary, in the embodiment of the present invention, according to the structure of the download file to be generated, the nodes, the node processing classes and the node processing rules are configured; configuring units, unit processing classes and unit processing rules according to the structure of the nodes; writing the node data items into the generated download file through the node processing class according to the node processing rule, and writing the unit data items through the unit processing class according to the unit processing rule; generating a download file according to the writing result of the node data item and the writing result of the unit data item; compared with the technical scheme of developing a set of file generation program for each file in the prior art, the generation of the downloaded file is realized in a configurable mode, so that the configuration is not required to be modified as long as the structure of the file is not changed, the reusability and the readability of codes are improved, the configurable development mode is convenient for positioning problems, and the maintenance cost is reduced.
The embodiment of the invention can lead the software engineer to pay more attention to business logic, is suitable for parallel development of a plurality of software engineers, and only needs to know the processing rules of the distributed nodes or units for a developer unfamiliar with the file generation configuration rules.
It will be appreciated by those skilled in the art that embodiments of the present invention may be provided as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present invention may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present invention is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems) and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flowchart illustrations and/or block diagrams, and combinations of flows and/or blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
The foregoing description of the embodiments has been provided for the purpose of illustrating the general principles of the invention, and is not meant to limit the scope of the invention, but to limit the invention to the particular embodiments, and any modifications, equivalents, improvements, etc. that fall within the spirit and principles of the invention are intended to be included within the scope of the invention.

Claims (12)

1. A method for generating configured download files, comprising:
Configuring nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
Configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
Writing in node data items of the download file to be generated through the node processing class according to the node processing rule; if the node data item is written abnormally, ending the file generation;
Writing in unit data items of the download file to be generated according to unit processing rules through unit processing classes; if the writing of the unit data item is abnormal, ending the file generation; otherwise:
Checking whether unwritten data items exist, if so, returning to the download file to be generated, and writing the node data items through the node processing class according to the node processing rule; if the checking process is abnormal, ending the file generation;
and generating a download file according to the writing result of the node data item and the writing result of the unit data item.
2. The method of claim 1, wherein nodes comprise batch nodes and detail nodes; wherein the batch node comprises file header information; the detail node includes file detail information for generating file contents.
3. The method of claim 2, wherein the batch node further includes common information corresponding to the detail nodes.
4. The method of claim 1, wherein configuring node processing classes comprises:
Configuring node related information in a node processing class; wherein the node related information comprises field order and/or delimiters in the node.
5. A method according to any one of claims 1 to 4, wherein writing of node data items by node processing classes according to node processing rules for the download file to be generated comprises:
Writing node data items into a plurality of to-be-generated download files belonging to the same category in parallel;
Writing the unit data item into the generated download file according to the unit processing rule by the unit processing class, comprising the following steps:
writing unit data items into a plurality of to-be-generated download files belonging to the same category in parallel;
generating a download file according to the data item writing result of the node and the data item writing result of the unit, wherein the download file comprises the following components:
Generating download files in parallel for a plurality of download files to be generated, wherein the download files belong to the same category;
The download files to be generated in the same category have the same structure.
6. A configured download file generating apparatus, comprising:
The node configuration module is used for configuring nodes, node processing classes and node processing rules according to the structure of the download file to be generated; the node is an abstraction of each row of the download file to be generated, the node processing class is a class for processing the node, and the node processing rule is a use rule of the node;
the unit configuration module is used for configuring units, unit processing classes and unit processing rules according to the structure of the nodes; the unit is a column for storing data items in each row of the download file to be generated, the unit processing class is a class of processing units, and the unit processing rule is a use rule of the unit;
the node writing module is used for writing the node data item through the node processing class according to the node processing rule of the download file to be generated; if the node data item is written abnormally, ending the file generation;
The unit writing module is used for writing the unit data item through the unit processing class according to the unit processing rule of the download file to be generated; if the writing of the unit data item is abnormal, ending the file generation;
The node writing module is also used for checking whether the unwritten data items exist or not, if yes, returning the download file to be generated, and writing the node data items through the node processing class according to the node processing rule; if the checking process is abnormal, ending the file generation;
And the file generation module is used for generating a download file according to the writing result of the node data item and the writing result of the unit data item when the unwritten data item does not exist.
7. The apparatus of claim 6, wherein nodes comprise batch nodes and detail nodes; wherein the batch node comprises file header information; the detail node includes file detail information for generating file contents.
8. The apparatus of claim 7, wherein the batch node further comprises common information corresponding to the detail node.
9. The apparatus of claim 6, wherein the node configuration module is specifically configured to:
Configuring node related information in a node processing class; wherein the node related information comprises field order and/or delimiters in the node.
10. The apparatus according to any of claims 6 to 9, wherein the node writing module is specifically configured to:
Writing node data items into a plurality of to-be-generated download files belonging to the same category in parallel;
The unit writing module is specifically used for:
writing unit data items into a plurality of to-be-generated download files belonging to the same category in parallel;
The file generation module is specifically used for:
Generating download files in parallel for a plurality of download files to be generated, wherein the download files belong to the same category;
The download files to be generated in the same category have the same structure.
11. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, characterized in that the processor implements the method of any of claims 1 to 5 when executing the computer program.
12. A computer readable storage medium, characterized in that the computer readable storage medium stores a computer program for executing the method of any one of claims 1 to 5.
CN202010916896.3A 2020-09-03 2020-09-03 Configurable download file generation method and device Active CN112051999B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010916896.3A CN112051999B (en) 2020-09-03 2020-09-03 Configurable download file generation method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010916896.3A CN112051999B (en) 2020-09-03 2020-09-03 Configurable download file generation method and device

Publications (2)

Publication Number Publication Date
CN112051999A CN112051999A (en) 2020-12-08
CN112051999B true CN112051999B (en) 2024-04-19

Family

ID=73606863

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010916896.3A Active CN112051999B (en) 2020-09-03 2020-09-03 Configurable download file generation method and device

Country Status (1)

Country Link
CN (1) CN112051999B (en)

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104007984A (en) * 2014-06-20 2014-08-27 中国银行股份有限公司 Data converting method and device
CN107784049A (en) * 2016-12-05 2018-03-09 上海壹账通金融科技有限公司 The method and apparatus of multi-format document parsing
CN108694194A (en) * 2017-04-10 2018-10-23 北京京东尚科信息技术有限公司 A kind of method and apparatus of construction data object
CN110377563A (en) * 2019-07-23 2019-10-25 中国工商银行股份有限公司 Document handling method and device and electronic equipment and readable storage medium storing program for executing
CN111339041A (en) * 2020-03-10 2020-06-26 中国建设银行股份有限公司 File parsing and warehousing and file generating method and device
CN111427899A (en) * 2020-03-17 2020-07-17 中国建设银行股份有限公司 Method, device, equipment and computer readable medium for storing file

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104007984A (en) * 2014-06-20 2014-08-27 中国银行股份有限公司 Data converting method and device
CN107784049A (en) * 2016-12-05 2018-03-09 上海壹账通金融科技有限公司 The method and apparatus of multi-format document parsing
CN108694194A (en) * 2017-04-10 2018-10-23 北京京东尚科信息技术有限公司 A kind of method and apparatus of construction data object
CN110377563A (en) * 2019-07-23 2019-10-25 中国工商银行股份有限公司 Document handling method and device and electronic equipment and readable storage medium storing program for executing
CN111339041A (en) * 2020-03-10 2020-06-26 中国建设银行股份有限公司 File parsing and warehousing and file generating method and device
CN111427899A (en) * 2020-03-17 2020-07-17 中国建设银行股份有限公司 Method, device, equipment and computer readable medium for storing file

Also Published As

Publication number Publication date
CN112051999A (en) 2020-12-08

Similar Documents

Publication Publication Date Title
US10831826B2 (en) Validation of schema and schema conformance verification
CN110795091B (en) Modularized route decoupling method, storage medium, electronic equipment and system
CN104424239B (en) resource file loading method and device
CN104699518A (en) Multi-purpose meter reading machine adapter based on microkernel plug-in and realization method thereof
CN108733589A (en) The implementation method and device of distributed transaction heat deployment
CA3065729A1 (en) Business rules processing framework
CN111159040A (en) Test data generation method, device, equipment and storage medium
JP2023553220A (en) Process mining for multi-instance processes
CN112051999B (en) Configurable download file generation method and device
CN113032275A (en) Method and device for testing field, electronic equipment and storage medium
CN110737428B (en) Hidl-based universal interface design method, device, terminal and readable storage medium
CN115729724B (en) Fault injection method, fault test system, electronic device and readable storage medium
CN114556238A (en) Method and system for generating digital representation of asset information in cloud computing environment
US10346778B2 (en) Cross domain integration in product lifecycle management
CN115599401A (en) Publishing method, device, equipment and medium of user-defined model
CN109725905A (en) Software architecture and implementation method based on source code collection, plug-in unit and application method for compiling pins component
CN112199080B (en) Webpack construction method and equipment for vuejs project
CN109918147B (en) Expansion method and device for drive under OpenStack and electronic equipment
CN112749152A (en) Data migration method and device of intelligent contract and storage medium
CN115202830B (en) Root file system preparation method, system, computing device and readable storage medium
Madeira et al. When even the interface evolves...
CN112000366B (en) System parameter configuration method and device based on code generator
CN113204478B (en) Method, device and equipment for operating test unit and storage medium
CN111159198B (en) Parameter transaction processing method and device, computer equipment and readable storage medium
US20240232053A1 (en) Generation of Hardware Description Language (HDL) Code Using Machine Learning

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