CN111045748B - Method and system for quickly reading configuration file, server and medium - Google Patents

Method and system for quickly reading configuration file, server and medium Download PDF

Info

Publication number
CN111045748B
CN111045748B CN201911229682.2A CN201911229682A CN111045748B CN 111045748 B CN111045748 B CN 111045748B CN 201911229682 A CN201911229682 A CN 201911229682A CN 111045748 B CN111045748 B CN 111045748B
Authority
CN
China
Prior art keywords
configuration file
binary data
reading
formatted text
data
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
CN201911229682.2A
Other languages
Chinese (zh)
Other versions
CN111045748A (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.)
Puhua Technology Co ltd
Original Assignee
Fangzheng Zhushi Wuhan Technology Development 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 Fangzheng Zhushi Wuhan Technology Development Co ltd filed Critical Fangzheng Zhushi Wuhan Technology Development Co ltd
Priority to CN201911229682.2A priority Critical patent/CN111045748B/en
Publication of CN111045748A publication Critical patent/CN111045748A/en
Application granted granted Critical
Publication of CN111045748B publication Critical patent/CN111045748B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44505Configuring for program initiating, e.g. using registry, configuration files
    • G06F9/4451User profiles; Roaming
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Landscapes

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

Abstract

The invention provides a system and a method for quickly reading configuration files, a server and a medium, wherein a formatted text reading function, a binary data storage function and a binary data reading function are arranged; therefore, the advantages of the formatted text configuration file and the binary data configuration file are combined, so that the convenience requirements of configuration data use, viewing, modification and addition can be met, the problem of low starting speed caused by large configuration data reading quantity when software is started is solved, and meanwhile, the use cost is low, and the implementation is easy. The method has the advantages of convenience in viewing and modifying the format text configuration file, high-speed loading performance of the binary data configuration file, avoidance of the defects of the format text configuration file and the binary data configuration file, low use cost and low limitation.

Description

Method and system for quickly reading configuration file, server and medium
Technical Field
The present invention relates to the field of data processing technologies, and in particular, to a method and system for quickly reading a configuration file, a server, and a medium.
Background
In the field of computer application software, especially software running on a single machine or client software running on a C/S architecture, in order to quickly and flexibly cope with different running environments, adapt to different requirements and subsequent additions and changes, usually, the contents of a large number of options and the contents of data classes are not directly written in codes, but are separately stored outside the program in other files or modes, and when the software is started to run, the configuration options and the data are read in from the external storage, so that the program can normally run and display different forms to adapt to different requirements. When the environment and the requirements are adjusted and changed within the design scope, the aim can be achieved by only modifying the data in the external configuration files without re-writing codes, compiling and releasing software. Storing configuration data externally is the most important and versatile means to achieve software flexibility and flexibility.
The current methods for storing configuration data mainly include three methods:
1) Using an external configuration of the formatted text file, the formatted text typically includes an INI format, an XML format, a jason format, etc. The text format has obvious advantages, the content of the text can be checked and modified by using a universal text editor, the specific meaning of each item is simple and clear, and the text format is easy to find, modify and add after random positioning, so that the text format is the simplest way for a developer to use and is the most convenient for maintenance and modification. However, the defects are obvious, and the formatted texts have the characteristic of random single read-write, so that the read-write speed is very slow, when the data volume in the configuration file is relatively large, the time consumption is relatively long, the software is directly slow to start, and the efficiency is seriously influenced especially for multi-process automatic processing software needing repeated and rapid start.
2) External configuration modes of binary format files are used, and the binary format files are usually configuration files stored after the structural contents of data in a memory are serialized in a binary stream mode. The advantage of using binary format configuration files is also clear, because binary streams are read sequentially in batches, the access speed is extremely fast, and even if the configuration data amount is large, the influence on software start-up is basically negligible. However, this mode has the natural defect that it is not easy to view, modify and append, and any general binary file tool cannot easily and clearly view the specific meaning of the data because of the binary special format, and is not easy to modify and append. So using binary formatted configuration files, it is often necessary to additionally develop dedicated configuration data access and modification software to view and modify the maintenance data content through a dedicated UI interface. This is very inconvenient for the use of configuration files and the associated effort is great when the format changes.
3) And the configuration mode of the external database is used, the configuration data are stored in the database, and the configuration data are read from the database when the software is started. The speed of accessing configuration data through the database is between the format text file mode and the binary file mode, which has the disadvantages of higher cost, needing to deploy database service, designing corresponding table structure, being only suitable for the system which is designed with the database in advance under partial C/S architecture and has convenient access, and being not suitable for single machine software.
Disclosure of Invention
Therefore, the embodiment of the invention provides a system and a method for quickly reading configuration files, a server and a medium, which are convenient to edit and maintain and ensure that software can quickly start new configuration data storage access.
In a first aspect of the embodiment of the present invention, a method for quickly reading a configuration file is provided, where the method for quickly reading a configuration file includes the following contents:
setting a formatted text reading function, a binary data storage function and a binary data reading function;
when the software is started, comparing the updating time of the formatted text configuration file and the binary data configuration file;
when the updating time of the formatted text configuration file is later or the binary data configuration file does not exist, calling a formatted text reading function, reading data in the formatted text configuration file into a memory structure, calling a binary data storage function, serializing the data in the memory structure to generate a new binary data configuration file, replacing the original binary data configuration file and storing the new binary data configuration file into an external file;
and when the updating time of the binary data configuration file is later, calling a binary data reading function to read the data in the binary data configuration file into the memory structure.
In a second aspect of the embodiment of the present invention, a system for quickly reading a configuration file is provided, where the system for quickly reading a configuration file includes the following functional modules:
the formatted text reading module is configured to read the data of the formatted text configuration file into the memory structure in a single random access mode;
the binary data storage module is configured to convert the structured data in the memory into a binary configuration file in a serialization mode and store the binary configuration file into an external file;
and the binary data reading module is configured to read the data in the binary configuration file into the memory structure.
In a third aspect of the embodiments of the present invention, there is provided a server comprising a memory, a processor and a computer program stored in said memory and executable on said processor, said processor implementing the steps of the method of fast reading a configuration file as described above when said computer program is executed.
In a fourth aspect of embodiments of the present invention, there is provided a computer readable storage medium storing a computer program which, when executed by a processor, performs the steps of a method of quickly reading a configuration file as described above.
The method, the system, the server and the medium for quickly reading the configuration file combine the advantages of the configuration file in a formatted text mode and the binary format configuration file, so that the convenience requirements of configuration data use, checking, modification and addition can be met, the problem of low starting speed caused by large configuration data reading amount when software is started is solved, and the method, the server and the medium for quickly reading the configuration file are low in use cost and easy to realize. The method has the advantages of convenience in checking and modifying the formatted text configuration file, high-speed loading performance of the binary format configuration file, avoidance of the defects of the formatted text configuration file and the binary format configuration file, low use cost and low limitation.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present invention, the drawings that are needed in the embodiments or the description of the prior art will be briefly described below, it being obvious that the drawings in the following description are only some embodiments of the present invention, and that other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
FIG. 1 is a block flow diagram of a method for quickly reading a configuration file according to an embodiment of the present invention;
FIG. 2 is a functional block diagram of a system for fast reading configuration files according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of a server according to an embodiment of the present invention.
Detailed Description
In order to make the objects, features and advantages of the present invention more comprehensible, the technical solutions in the embodiments of the present invention are described in detail below with reference to the accompanying drawings, and it is apparent that the embodiments described below are only some embodiments of the present invention, but not all embodiments of the present invention. All other embodiments, which can be made by those skilled in the art based on the embodiments of the invention without making any inventive effort, are intended to be within the scope of the invention.
As shown in fig. 1, a method for quickly reading a configuration file according to an embodiment of the present invention includes the following steps:
s1, setting a formatted text reading function, a binary data storage function and a binary data reading function;
s2, when the software is started, comparing the updating time of the formatted text configuration file and the binary data configuration file;
s3, when the updating time of the formatted text configuration file is later or the binary data configuration file does not exist, calling a formatted text reading function, reading data in the formatted text configuration file into a memory structure, calling a binary data storage function, serializing the data in the memory structure to generate a new binary data configuration file, replacing the original binary data configuration file and storing the new binary data configuration file into an external file;
s4, when the updating time of the binary data configuration file is later, calling a binary data reading function to read data in the binary data configuration file into the memory structure.
Specifically, the following 3 access functions are first pre-written.
The formatted text reading function can specifically adopt INI, XML, jason or any other format which is convenient to view, edit and append. This function is used to read configuration data in the formatted text configuration file into the memory structure in a single random access manner. The specific format of the configuration data content in the formatted text configuration file is defined by the developer on demand, but it is necessary to ensure that the read function matches the format.
The binary data storage function is characterized in that the binary data configuration file is a binary stream storage file with a custom format, and the function converts structured data in a memory into a binary stream in a serialization mode and stores the binary stream into an external file.
The binary data reading function acts in a positive opposition to the binary data storage function, which reads the data in the binary configuration file into the memory structure, and is a strictly sequential reverse serialization process because the binary configuration file is a memory-serialized binary stream.
At software start-up, it is checked whether a formatted text profile and a binary data profile exist. The formatted text profile belongs to a manually edited preset file and must exist. If the binary data configuration file does not exist, a formatted text reading function is called to read the data in the formatted text configuration file into the memory structure. And then, calling a binary data storage function, serializing the data in the memory structure, writing out the data to generate a binary data configuration file, and then, normally operating the software.
If the binary data profile already exists, the last modification times of the formatted text profile and the binary data profile are read, which time is later is compared with the formatted text profile, and if the formatted text profile is later, a formatted text reading function is called to read the data in the formatted text profile into the memory structure. And then, calling a binary storage function, serializing the data in the memory structure, writing out the data to generate a binary data configuration file, namely discarding the original binary data configuration file to generate a new binary data configuration file, and then, normally operating the software.
If the binary data configuration file time in the judgment is later, a binary data reading function is called, data in the binary data configuration file is read into a memory structure, and then software operates normally.
When the software is started, the time of the binary data configuration file is later than that of the formatted text configuration file, so that the software always automatically reads the configuration data from the binary data configuration file in a binary stream mode, the reading speed is extremely high, and the software starting is not influenced. When the configuration data needs to be modified and added, maintenance personnel only need to use a general formatted text editor to open the formatted text configuration file for adding/deleting/modifying/checking, and the method is convenient and easy. After the formatted text configuration file is modified, due to time variation, the software automatically reads the content of the formatted text configuration file to regenerate the binary data configuration file when the software is started for the first time, and the binary data configuration file is directly used by the subsequent starting, so that the situation that the speed is slower only occurs when the software is started for the first time. Since modification of the formatted text profile is a rare occurrence, updating the binary data profile is a rare occurrence, which is essentially negligible.
By using the method for quickly reading the configuration file, maintenance personnel only need to edit the formatted text file to modify the configuration data, software only needs to read the formatted text configuration data in time consumption when running for the first time, binary configuration data is used when starting daily, the purpose of convenient maintenance is achieved, the problem of starting speed is solved, and the application cost is low.
The invention provides a method for quickly reading configuration files, which combines the advantages of a configuration file in a formatted text mode and a binary format configuration file, so that the convenience requirements of configuration data use, checking, modification and addition can be met, the problem of low starting speed caused by large configuration data reading amount when software is started is solved, and the method is low in use cost and easy to realize. The method has the advantages of convenience in checking and modifying the formatted text configuration file, high-speed loading performance of the binary format configuration file, avoidance of the defects of the formatted text configuration file and the binary format configuration file, low use cost and low limitation.
It should be understood that the sequence number of each step in the foregoing embodiment does not mean that the execution sequence of each process should be determined by the function and the internal logic, and should not limit the implementation process of the embodiment of the present invention.
The foregoing has mainly described a method for quickly reading a configuration file, and a system for quickly reading a configuration file will be described in detail.
FIG. 2 is a functional block diagram of a system for fast reading of configuration files according to an embodiment of the present invention. As shown in fig. 2, the system for quickly reading the configuration file includes the following functional modules:
the formatted text reading module 10 is configured to read the data of the formatted text configuration file into the memory structure in a single random access mode;
a binary data storage module 20 configured to convert the structured data in the memory into a binary configuration file in a serialized manner and store the binary configuration file in an external file;
the binary data reading module 30 is configured to read the data in the binary configuration file into the memory structure.
Fig. 3 is a schematic diagram of a server structure for quickly reading a configuration file according to an embodiment of the present invention. The server is a device for providing a computing service, generally referred to as a computer having a high computing power and provided to a plurality of users through a network. As shown in fig. 3, the server 4 of this embodiment includes: the memory 41, the processor 42 and the system bus 43, the memory 41 comprising an executable program 411 stored thereon, it will be understood by those skilled in the art that the terminal device structure shown in fig. 3 does not constitute a limitation of the terminal device, and may comprise more or less components than illustrated, or may combine certain components, or a different arrangement of components.
The following describes the respective constituent elements of the terminal device in detail with reference to fig. 3:
the memory 41 may be used to store software programs and modules, and the processor 42 performs various functional applications of the terminal and data processing by running the software programs and modules stored in the memory 41. The memory 41 may mainly include a storage program area that may store an operating system, application programs required for at least one function (such as a sound playing function, an image playing function, etc.), and a storage data area; the storage data area may store data (such as audio data, phonebook, etc.) created according to the use of the terminal, etc. In addition, memory 41 may include high-speed random access memory, and may also include non-volatile memory, such as at least one magnetic disk storage device, flash memory device, or other volatile solid-state storage device.
An executable program 411 containing a method for quickly reading configuration files on a memory 41, said executable program 411 may be divided into one or more modules/units stored in said memory 41 and executed by a processor 42 to complete the delivery of notifications and obtain notification implementation, said one or more modules/units may be a series of computer program instruction segments capable of performing specific functions describing the execution of said computer program 411 in said server 4. For example, the computer program 411 may be divided into an acquisition module, a comparison module, a splice module, and a transmission module.
The processor 42 is a control center of the server, connects respective parts of the entire terminal device using various interfaces and lines, and performs various functions of the terminal and processes data by running or executing software programs and/or modules stored in the memory 41 and calling data stored in the memory 41, thereby performing overall monitoring of the terminal. Optionally, the processor 42 may include one or more processing units; preferably, the processor 42 may integrate an application processor that primarily handles operating systems, applications, etc., with a modem processor that primarily handles wireless communications. It will be appreciated that the modem processor described above may not be integrated into the processor 42.
The system bus 43 is used to connect various functional components inside the computer, and can transfer data information, address information, and control information, and the types of which may be PCI bus, ISA bus, VESA bus, and the like. Instructions of the processor 42 are transferred to the memory 41 through the bus, the memory 41 feeds back data to the processor 42, and the system bus 43 is responsible for data and instruction interaction between the processor 42 and the memory 41. Of course, the system bus 43 may also access other devices, such as a network interface, a display device, etc.
The server should at least include a CPU, a chipset, a memory, a disk system, etc., and other components will not be described herein.
In the embodiment of the present invention, the executable program executed by the processor 42 included in the terminal is specifically: a method of quickly reading a configuration file, comprising:
setting a formatted text reading function, a binary data storage function and a binary data reading function;
at software start-up, comparing the update times of the formatted text profile and the binary data profile,
when the updating time of the formatted text configuration file is later or the binary data configuration file does not exist, calling a formatted text reading function, and reading the data in the formatted text configuration file into a memory structure;
invoking a binary data storage function, serializing the data in the memory structure to generate a new binary data configuration file, replacing the original binary data configuration file and storing the original binary data configuration file into an external file;
and when the updating time of the binary data configuration file is later, calling a binary data reading function to read the data in the binary data configuration file into the memory structure.
It will be clear to those skilled in the art that, for convenience and brevity of description, specific working procedures of the above-described systems, apparatuses and units may refer to corresponding procedures in the foregoing method embodiments, which are not repeated herein.
In the foregoing embodiments, the descriptions of the embodiments are emphasized, and in part, not described or illustrated in any particular embodiment, reference is made to the related descriptions of other embodiments.
Those of ordinary skill in the art will appreciate that the modules, units, and/or method steps of the various embodiments described in connection with the embodiments disclosed herein can be implemented as electronic hardware, or as a combination of computer software and electronic hardware. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the solution. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present invention.
The above embodiments are only for illustrating the technical solution of the present invention, and not for limiting the same; although the invention has been described in detail with reference to the foregoing embodiments, it will be understood by those of ordinary skill in the art that: the technical scheme described in the foregoing embodiments can be modified or some technical features thereof can be replaced by equivalents; such modifications and substitutions do not depart from the spirit and scope of the technical solutions of the embodiments of the present invention.

Claims (6)

1. A method for quickly reading a configuration file, wherein the system for quickly reading the configuration file comprises the following steps:
setting a formatted text reading function, a binary data storage function and a binary data reading function;
when the software is started, comparing the updating time of the formatted text configuration file and the binary data configuration file;
when the updating time of the formatted text configuration file is later or the binary data configuration file does not exist, calling a formatted text reading function, reading data in the formatted text configuration file into a memory structure, calling a binary data storage function, serializing the data in the memory structure to generate a new binary data configuration file, replacing the original binary data configuration file and storing the new binary data configuration file into an external file;
when the updating time of the binary data configuration file is later, invoking a binary data reading function to read data in the binary data configuration file into a memory structure;
when the software is started again after the formatted text configuration file is edited and modified, the updating time of the formatted text configuration file is later than the updating time of the binary data configuration file.
2. The method of claim 1, wherein the format of the configuration data content in the formatted text configuration file is consistent with the format of the formatted text reading function.
3. The method for quickly reading a configuration file according to claim 1, wherein the formatted text configuration file is pre-written manually by a developer or maintainer, and the binary configuration file is automatically generated by a program runtime.
4. The method for quickly reading a configuration file according to claim 1, wherein the binary data reading function is an inverse serialization process.
5. A server comprising a memory, a processor and a computer program stored in the memory and executable on the processor, characterized in that the processor, when executing the computer program, realizes the steps of the method of fast reading a configuration file according to any of claims 1 to 4.
6. A computer readable storage medium storing a computer program, characterized in that the computer program when executed by a processor implements the steps of the method of fast reading a configuration file according to any of claims 1 to 4.
CN201911229682.2A 2019-12-04 2019-12-04 Method and system for quickly reading configuration file, server and medium Active CN111045748B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911229682.2A CN111045748B (en) 2019-12-04 2019-12-04 Method and system for quickly reading configuration file, server and medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911229682.2A CN111045748B (en) 2019-12-04 2019-12-04 Method and system for quickly reading configuration file, server and medium

Publications (2)

Publication Number Publication Date
CN111045748A CN111045748A (en) 2020-04-21
CN111045748B true CN111045748B (en) 2023-06-30

Family

ID=70234653

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911229682.2A Active CN111045748B (en) 2019-12-04 2019-12-04 Method and system for quickly reading configuration file, server and medium

Country Status (1)

Country Link
CN (1) CN111045748B (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104598263A (en) * 2014-12-04 2015-05-06 广州酷狗计算机科技有限公司 Application program operation method and configuration file generating method and device
CN105607923A (en) * 2015-12-10 2016-05-25 中国航空工业集团公司西安航空计算技术研究所 Cross-platform avionics system configuration data generation and recovery method
CN107766304A (en) * 2017-10-23 2018-03-06 国电南瑞科技股份有限公司 A kind of binary profile file generation method based on XML

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8959053B2 (en) * 2008-08-13 2015-02-17 Alcatel Lucent Configuration file framework to support high availability schema based upon asynchronous checkpointing
US9967153B2 (en) * 2012-10-19 2018-05-08 Halliburton Energy Services, Inc. Self-defining configuration apparatus, methods, and systems
CN104461619B (en) * 2014-11-26 2017-10-27 卡斯柯信号有限公司 A kind of embedded software function can configure method
US9298371B1 (en) * 2014-12-22 2016-03-29 American Megatrends, Inc. System and method of reducing write cycles and increasing longevity of non-volatile memory in baseboard management controller (BMC)
CN106843842B (en) * 2016-12-23 2020-06-12 光锐恒宇(北京)科技有限公司 Method and device for updating application program configuration file
CN109344129A (en) * 2018-08-16 2019-02-15 浙江众合科技股份有限公司 A kind of signal system configuration file generation system and method for high reliability
CN109634591B (en) * 2018-12-29 2022-03-01 杭州迪普科技股份有限公司 File processing method and device

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104598263A (en) * 2014-12-04 2015-05-06 广州酷狗计算机科技有限公司 Application program operation method and configuration file generating method and device
CN105607923A (en) * 2015-12-10 2016-05-25 中国航空工业集团公司西安航空计算技术研究所 Cross-platform avionics system configuration data generation and recovery method
CN107766304A (en) * 2017-10-23 2018-03-06 国电南瑞科技股份有限公司 A kind of binary profile file generation method based on XML

Also Published As

Publication number Publication date
CN111045748A (en) 2020-04-21

Similar Documents

Publication Publication Date Title
US9262237B2 (en) Automating software availability management based on API versioning
CN113076096B (en) Desktop application program development method, device, equipment and storage medium
CN112052242A (en) Data query method and device, electronic equipment and storage medium
CN110928802A (en) Test method, device, equipment and storage medium based on automatic generation of case
CN112765023B (en) Test case generation method and device
CN110032409B (en) Client screen adapting method and device and electronic equipment
US20120084750A1 (en) Method for Efficiently Managing Property Types and Constraints In a Prototype Based Dynamic Programming Language
CN112817657B (en) Application program starting item loading method, device, system and storage medium
US20160350209A1 (en) Selective Bypass of Code Flows in Software Program
CN114722119A (en) Data synchronization method and system
CN107122203B (en) Configuration file setting method and device
CN113535141A (en) Database operation code generation method and device
US10540151B1 (en) Graphical customization of a firmware-provided user interface (UI)
CN112306473B (en) Program interface parameter transmission method, system and related equipment
CN110968339B (en) Method and device for front-end building tool and electronic equipment
CN111045748B (en) Method and system for quickly reading configuration file, server and medium
US10198784B2 (en) Capturing commands in a multi-engine graphics processing unit
CN110908644B (en) Configuration method and device of state node, computer equipment and storage medium
CN114647548A (en) Log generation method and device
CN117008934A (en) Method, device, equipment and medium for automatically making mirror image of information creation operating system
CN115658109A (en) Micro-service heat deployment method, system, electronic device and storage medium
CN113741878A (en) GraphQL-based interface construction method and system, electronic equipment and storage medium
CN113377368A (en) Project development method, device, server and storage medium
CN113032045A (en) Application program starting method, related device and equipment
CN105183491A (en) Cross-platform desktop GIS and starting method thereof

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
TR01 Transfer of patent right

Effective date of registration: 20240711

Address after: Room 406 and 407, 4th floor, building 1, No.88 Jixian street, Suzhou Industrial Park, Suzhou area, China (Jiangsu) pilot Free Trade Zone, Suzhou, Jiangsu 215000

Patentee after: Puhua Technology Co.,Ltd.

Country or region after: China

Address before: Room 2256, 2266-56, 2nd floor, E Block, Dongxin Road, Donghu New Technology Development Zone, Wuhan City, Hubei Province

Patentee before: FANGZHENG ZHUSHI (WUHAN) TECHNOLOGY DEVELOPMENT Co.,Ltd.

Country or region before: China

TR01 Transfer of patent right