CN107329849B - Data verification method and system based on Java system - Google Patents

Data verification method and system based on Java system Download PDF

Info

Publication number
CN107329849B
CN107329849B CN201710545545.4A CN201710545545A CN107329849B CN 107329849 B CN107329849 B CN 107329849B CN 201710545545 A CN201710545545 A CN 201710545545A CN 107329849 B CN107329849 B CN 107329849B
Authority
CN
China
Prior art keywords
verification
data
check
rule
library
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
CN201710545545.4A
Other languages
Chinese (zh)
Other versions
CN107329849A (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.)
Beijing Institute of Technology BIT
Original Assignee
Beijing Institute of Technology BIT
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 Beijing Institute of Technology BIT filed Critical Beijing Institute of Technology BIT
Priority to CN201710545545.4A priority Critical patent/CN107329849B/en
Publication of CN107329849A publication Critical patent/CN107329849A/en
Application granted granted Critical
Publication of CN107329849B publication Critical patent/CN107329849B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/07Responding to the occurrence of a fault, e.g. fault tolerance
    • G06F11/0703Error or fault processing not based on redundancy, i.e. by taking additional measures to deal with the error or fault not making use of redundancy in operation, in hardware, or in data representation
    • G06F11/0706Error or fault processing not based on redundancy, i.e. by taking additional measures to deal with the error or fault not making use of redundancy in operation, in hardware, or in data representation the processing taking place on a specific hardware platform or in a specific software environment
    • G06F11/0709Error or fault processing not based on redundancy, i.e. by taking additional measures to deal with the error or fault not making use of redundancy in operation, in hardware, or in data representation the processing taking place on a specific hardware platform or in a specific software environment in a distributed system consisting of a plurality of standalone computer nodes, e.g. clusters, client-server systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2455Query execution
    • G06F16/24564Applying rules; Deductive queries
    • 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 data verification method and system based on a Java system. The method comprises the following steps: acquiring data to be checked; carrying out front-end verification on the data to be verified by utilizing the established universal verification library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked; if the front end check result is that the check is passed, transmitting the data to be checked to a background, and performing background check on the data to be checked by using the general check library; and if the verification result of the front-end verification is that the verification fails, prompting the user to re-enter the data. The data verification method and system based on the Java system can be used for data verification of various data types, can be suitable for data verification of data platforms containing multiple data types, and have universality.

Description

Data verification method and system based on Java system
Technical Field
The invention relates to the technical field of data verification, in particular to a data verification method and system based on a Java system.
Background
The large data platform requires a user to input various types of data and to ensure the security of each type of data input, and thus the input data needs to be verified. However, the existing data verification method can only be applied to specific data types, and the specific data types are single.
Disclosure of Invention
The invention aims to provide a data verification method and a data verification system based on a Java system, which can be used for data verification of multiple data types, can be suitable for data verification of a data platform containing multiple data types, and have universality.
In order to achieve the purpose, the invention provides the following scheme:
a data verification method based on a Java system comprises the following steps:
acquiring data to be checked;
carrying out front-end verification on the data to be verified by utilizing the established universal verification library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
if the front end check result is that the check is passed, transmitting the data to be checked to a background, and performing background check on the data to be checked by using the general check library;
and if the verification result of the front-end verification is that the verification fails, prompting the user to re-enter the data.
Optionally, the method for establishing the universal check library includes:
acquiring the verification requirements of various data types;
the checking requirements are arranged and generalized, and a general checking rule is concluded;
creating the general verification rule into a general verification library;
writing the general verification rule by adopting a regular expression and JavaScript to obtain a dual-format verification rule;
and storing the dual-format verification rule to create the universal verification library.
Optionally, the acquiring the data to be verified specifically includes:
converting the acquisition interface of the data to be verified into a dynamic interface by using a template engine;
and acquiring the data to be verified from the dynamic interface.
Optionally, the performing front-end verification on the data to be verified by using the established general verification library specifically includes:
screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and performing front-end verification on the data to be verified by using the front-end rule to be verified.
Optionally, the performing background verification on the data to be verified by using the general verification library specifically includes:
screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background rule to be checked;
configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules;
performing background verification on the data to be verified by using the background configuration verification rule;
if the check result of the background check is that the check is passed, finishing the data check process;
and if the check result of the background check is that the check fails, prompting the user that the check fails.
The invention also discloses a data checking system based on the Java system, which comprises:
the data acquisition module is used for acquiring data to be checked;
the front-end checking module is used for carrying out front-end checking on the data to be checked by utilizing the established general checking library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
the background checking module is used for transmitting the data to be checked to a background and carrying out background checking on the data to be checked by utilizing the general checking library if the checking result of the front-end checking is that the checking is passed;
and the feedback module is used for prompting the user to re-enter the data if the verification result of the front-end verification is that the verification fails.
Optionally, the data verification system further includes a verification library establishing module, where the verification library establishing module is configured to establish the general verification library; the check library establishing module specifically comprises:
the requirement acquisition unit is used for acquiring the verification requirements of various data types;
the arrangement generalization unit is used for carrying out arrangement generalization on the verification requirements and generalizing a general verification rule;
the creating unit is used for creating the general verification rule into a general verification library;
the double-format compiling unit is used for compiling the general checking rule by adopting a regular expression and JavaScript to obtain a double-format checking rule;
and the storage unit is used for storing the dual-format verification rule to create the universal verification library.
Optionally, the data obtaining module specifically includes:
the interface conversion unit is used for converting the acquisition interface of the data to be verified into a dynamic interface by utilizing a template engine;
and the data acquisition unit is used for acquiring the data to be verified from the dynamic interface.
Optionally, the front end verification module specifically includes:
the front-end check rule screening unit is used for screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and the front-end checking unit is used for carrying out front-end checking on the data to be checked by utilizing the front-end rule to be checked.
Optionally, the background checking module specifically includes:
the background check rule screening unit is used for screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background check rule to be checked;
the configuration unit is used for configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules;
the background verification unit is used for performing background verification on the data to be verified by utilizing the background configuration verification rule; if the check result of the background check is that the check is passed, finishing the data check process; and if the check result of the background check is that the check fails, prompting the user that the check fails.
According to the specific embodiment provided by the invention, the invention discloses the following technical effects: the data verification method and system based on the Java system, disclosed by the invention, can be used for organizing and generalizing the verification requirements of various data types, generalizing the universal verification rule, and establishing the universal verification library containing the universal verification rule.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings needed to be used in the embodiments will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art to obtain other drawings without inventive exercise.
FIG. 1 is a flowchart of a data verification method according to an embodiment of the present invention;
FIG. 2 is a flowchart of a method for establishing a universal verification library according to an embodiment of the data verification method based on the Java system;
fig. 3 is a system structure diagram of an embodiment of the data verification system based on the Java system according to the present invention.
Detailed Description
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.
In order to make the aforementioned objects, features and advantages of the present invention comprehensible, embodiments accompanied with figures are described in further detail below.
Fig. 1 is a flowchart of a data verification method based on a Java system according to an embodiment of the present invention.
Referring to fig. 1, the data verification method based on the Java system includes:
step 101: acquiring data to be checked;
the step 101 specifically includes:
converting the acquisition interface of the data to be verified into a dynamic interface by using a template engine, such as FreeMarker;
and acquiring the data to be verified from the dynamic interface.
The conversion of a dynamic interface is realized through the template engine, so that the data to be verified can be acquired more quickly.
Step 102: carrying out front-end verification on the data to be verified by utilizing the established universal verification library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
the step 102 specifically includes:
screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and performing front-end verification on the data to be verified by using the front-end rule to be verified.
Step 103: if the front end check result is that the check is passed, transmitting the data to be checked to a background, and performing background check on the data to be checked by using the general check library;
step 104: and if the verification result of the front-end verification is that the verification fails, prompting the user to re-enter the data.
The performing background verification on the data to be verified by using the general verification library in the step 103 specifically includes:
screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background rule to be checked;
configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules; the interceptor is based on a java reflection mechanism and is used for reading the background rules to be verified and configuring the background rules to be verified.
Performing background verification on the data to be verified by using the background configuration verification rule;
if the check result of the background check is that the check is passed, finishing the data check process;
and if the check result of the background check is that the check fails, prompting the user that the check fails.
When the universal check library is used for checking the background, the interceptor is configured with the rules to be checked of the background, so that the method is flexible to realize and very obvious in universality.
Fig. 2 is a flowchart of a method for establishing a universal check library according to an embodiment of a data checking method based on a Java system.
Referring to fig. 2, the method for establishing the universal check library includes:
step 201: acquiring the verification requirements of various data types;
the checking requirements of various data types comprise checking requirements under various checking scenes. For example, the checking requirements of the vehicle scene comprise necessary input non-empty checking, digital validity checking, configuration dictionary checking, repeated value checking, license plate rule checking and the like; the checking requirements of the vehicle factory scene comprise necessary input item non-empty checking, digital validity checking, configuration dictionary checking, repeated value checking, vehicle factory compliance checking and the like; the checking requirements of the unit scene comprise necessary input item non-empty checking, digital validity checking, configuration dictionary checking, repeated value checking, unit naming rule checking and the like; the verification requirements of the terminal scene comprise necessary input item non-empty verification, digital validity verification, configuration dictionary verification, repeated value verification, terminal compliance verification and the like.
Step 202: the checking requirements are arranged and generalized, and a general checking rule is concluded;
for example, according to a vehicle scene, a vehicle factory scene, a unit scene, and a terminal scene, common verification requirements under four scenes can be summarized as follows: checking the necessary input items, checking the digital validity, checking the configuration dictionary and checking the repeated value. Then, one may then: and (4) using necessary input item non-empty check, digital validity check, dictionary configuration check and repeated value check as a general check rule.
Step 203: creating the general verification rule into a general verification library;
step 204: writing the general verification rule by adopting a regular expression and JavaScript to obtain a dual-format verification rule;
step 205: and storing the dual-format verification rule to create the universal verification library.
The invention summarizes and generalizes the checking requirements of various data types, generalizes the general checking rules, establishes a general checking library containing the general checking rules, can realize the data checking of various data types by utilizing the general checking library, and is applicable to the data checking method even if the same data platform contains various data types because the checking rules in the general checking library are more general. The universal check library can be automatically created according to the check scene, so that the universality of the whole method is more obvious. The universal check library can realize both front-end check and background check, is flexible to call and convenient to use, and avoids the complexity of respective check methods adopted by the front-end check and the background check.
In step 102, the front-end check rule is a JavaScript script written by a regular expression and JavaScript.
Fig. 3 is a system structure diagram of an embodiment of the data verification system based on the Java system according to the present invention.
The invention also discloses a data checking system based on the Java system, which comprises:
a data obtaining module 301, configured to obtain data to be verified;
a front-end verification module 302, configured to perform front-end verification on the data to be verified by using the established general verification library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
the background verification module 303 is configured to transmit the data to be verified to a background if a verification result of the front-end verification is that the verification passes, and perform background verification on the data to be verified by using the general verification library;
the front end feedback module 304 is configured to prompt the user to re-enter data if the verification result of the front end verification is that the verification fails.
The data verification system further comprises a verification library establishing module 305, wherein the verification library establishing module 305 is used for establishing the universal verification library; the check library establishing module 305 specifically includes:
the requirement acquisition unit is used for acquiring the verification requirements of various data types;
the arrangement generalization unit is used for carrying out arrangement generalization on the verification requirements and generalizing a general verification rule;
the creating unit is used for creating the general verification rule into a general verification library;
the double-format compiling unit is used for compiling the general checking rule by adopting a regular expression and JavaScript to obtain a double-format checking rule;
and the storage unit is used for storing the dual-format verification rule to create the universal verification library.
The data obtaining module 301 specifically includes:
the interface conversion unit is used for converting the acquisition interface of the data to be verified into a dynamic interface by utilizing a template engine;
and the data acquisition unit is used for acquiring the data to be verified from the dynamic interface.
The front-end verification module 302 specifically includes:
the front-end check rule screening unit is used for screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and the front-end checking unit is used for carrying out front-end checking on the data to be checked by utilizing the front-end rule to be checked.
The background verification module 303 specifically includes:
the background check rule screening unit is used for screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background check rule to be checked;
the configuration unit is used for configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules;
the background verification unit is used for performing background verification on the data to be verified by utilizing the background configuration verification rule; if the check result of the background check is that the check is passed, finishing the data check process; and if the check result of the background check is that the check fails, prompting the user that the check fails.
The data verification method and system based on the Java system, disclosed by the invention, can be used for organizing and generalizing the verification requirements of various data types, generalizing the universal verification rule, and establishing the universal verification library containing the universal verification rule.
The embodiments in the present description are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred to each other. For the system disclosed by the embodiment, the description is relatively simple because the system corresponds to the method disclosed by the embodiment, and the relevant points can be referred to the method part for description.
The principles and embodiments of the present invention have been described herein using specific examples, which are provided only to help understand the method and the core concept of the present invention; meanwhile, for a person skilled in the art, according to the idea of the present invention, the specific embodiments and the application range may be changed. In view of the above, the present disclosure should not be construed as limiting the invention.

Claims (5)

1. A data verification method based on a Java system is characterized by comprising the following steps:
acquiring data to be verified, wherein the acquiring of the data to be verified specifically comprises the following steps:
converting the acquisition interface of the data to be verified into a dynamic interface by using a template engine;
acquiring the data to be verified from the dynamic interface;
carrying out front-end verification on the data to be verified by utilizing the established universal verification library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
the method for establishing the universal check library comprises the following steps:
acquiring the verification requirements of various data types; specifically, the verification requirements of the various data types include verification requirements under each verification scene;
the checking requirements are arranged and generalized, and a general checking rule is concluded; specifically, the common verification requirements under each verification scene are summarized, and the common verification requirements are used as a universal verification rule;
creating the general verification rule into a general verification library;
writing the general verification rule by adopting a regular expression and JavaScript to obtain a dual-format verification rule;
storing the dual-format check rule to create the universal check library;
if the front end check result is that the check is passed, transmitting the data to be checked to a background, and performing background check on the data to be checked by using the general check library;
if the verification result of the front-end verification is that the verification fails, prompting the user to re-enter the data;
the background verification of the data to be verified by using the general verification library specifically comprises the following steps:
screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background rule to be checked;
configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules;
performing background verification on the data to be verified by using the background configuration verification rule;
if the check result of the background check is that the check is passed, finishing the data check process;
and if the check result of the background check is that the check fails, prompting the user that the check fails.
2. The data verification method based on the Java system as claimed in claim 1, wherein the performing front-end verification on the data to be verified by using the established universal verification library specifically includes:
screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and performing front-end verification on the data to be verified by using the front-end rule to be verified.
3. A data verification system based on a Java system, comprising:
the data acquisition module is used for acquiring data to be checked;
the front-end checking module is used for carrying out front-end checking on the data to be checked by utilizing the established general checking library; the universal check library comprises universal check rules, and the universal check rules are check rules which need to be followed when various data types are checked;
the background checking module is used for transmitting the data to be checked to a background and carrying out background checking on the data to be checked by utilizing the general checking library if the checking result of the front-end checking is that the checking is passed;
the background check module specifically includes:
the background check rule screening unit is used for screening a background check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a background check rule to be checked;
the configuration unit is used for configuring the background rules to be verified in the general verification library by using an interceptor to obtain background configuration verification rules;
the background verification unit is used for performing background verification on the data to be verified by utilizing the background configuration verification rule; if the check result of the background check is that the check is passed, finishing the data check process; if the check result of the background check is that the check is not passed, prompting a user that the check is failed;
the feedback module is used for prompting the user to re-enter data if the verification result of the front-end verification is that the verification fails;
the checking system also comprises a checking library establishing module, and the checking library establishing module is used for establishing the general checking library; the check library establishing module specifically comprises:
the requirement acquisition unit is used for acquiring the verification requirements of various data types; specifically, the verification requirements of the various data types include verification requirements under each verification scene;
the arrangement generalization unit is used for carrying out arrangement generalization on the verification requirements and generalizing a general verification rule; specifically, the common verification requirements under each verification scene are summarized, and the common verification requirements are used as a universal verification rule;
the creating unit is used for creating the general verification rule into a general verification library;
the double-format compiling unit is used for compiling the general checking rule by adopting a regular expression and JavaScript to obtain a double-format checking rule;
and the storage unit is used for storing the dual-format verification rule to create the universal verification library.
4. The data verification system based on the Java system as claimed in claim 3, wherein the data obtaining module specifically includes:
the interface conversion unit is used for converting the acquisition interface of the data to be verified into a dynamic interface by utilizing a template engine;
and the data acquisition unit is used for acquiring the data to be verified from the dynamic interface.
5. The data verification system based on the Java system as claimed in claim 3, wherein the front-end verification module specifically includes:
the front-end check rule screening unit is used for screening a front-end check rule which is in accordance with the data type of the data to be checked from the general check library to obtain a front-end rule to be checked;
and the front-end checking unit is used for carrying out front-end checking on the data to be checked by utilizing the front-end rule to be checked.
CN201710545545.4A 2017-07-06 2017-07-06 Data verification method and system based on Java system Active CN107329849B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710545545.4A CN107329849B (en) 2017-07-06 2017-07-06 Data verification method and system based on Java system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710545545.4A CN107329849B (en) 2017-07-06 2017-07-06 Data verification method and system based on Java system

Publications (2)

Publication Number Publication Date
CN107329849A CN107329849A (en) 2017-11-07
CN107329849B true CN107329849B (en) 2021-01-29

Family

ID=60195929

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710545545.4A Active CN107329849B (en) 2017-07-06 2017-07-06 Data verification method and system based on Java system

Country Status (1)

Country Link
CN (1) CN107329849B (en)

Families Citing this family (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107958370A (en) * 2017-12-04 2018-04-24 国网河北省电力公司经济技术研究院 Project cost data verification method and terminal device
CN108062293A (en) * 2017-12-29 2018-05-22 安徽方正医疗信息技术有限公司 A kind of ranked data method of calibration based on content
CN109582286B (en) * 2018-07-04 2021-11-26 福州震旦计算机技术有限公司 Freemarker technology-based data normalization verification method and device
CN109165017A (en) * 2018-07-05 2019-01-08 平安科技(深圳)有限公司 Data verification method, device and computer storage medium
CN111897842A (en) * 2020-01-02 2020-11-06 北京京东尚科信息技术有限公司 Data checking method, device, computer system and medium
SG10202008564PA (en) * 2020-09-03 2021-12-30 Grabtaxi Holdings Pte Ltd Data Base System and Method for Maintaining a Data Base
CN114357388A (en) * 2021-12-29 2022-04-15 苏州浪潮智能科技有限公司 Parameter checking method and device, electronic equipment and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH11203153A (en) * 1998-01-07 1999-07-30 Oki Electric Ind Co Ltd Interface system and recording medium
CN103793223A (en) * 2013-12-27 2014-05-14 远光软件股份有限公司 Rule creating method and system
CN104049972A (en) * 2014-06-18 2014-09-17 北京京东尚科信息技术有限公司 Data verification method and system
CN104391934A (en) * 2014-11-21 2015-03-04 深圳市银雁金融配套服务有限公司 Data calibration method and device
CN105930409A (en) * 2016-04-18 2016-09-07 深圳市永兴元科技有限公司 Data verification method and device based on dynamic generation rule

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH11203153A (en) * 1998-01-07 1999-07-30 Oki Electric Ind Co Ltd Interface system and recording medium
CN103793223A (en) * 2013-12-27 2014-05-14 远光软件股份有限公司 Rule creating method and system
CN104049972A (en) * 2014-06-18 2014-09-17 北京京东尚科信息技术有限公司 Data verification method and system
CN104391934A (en) * 2014-11-21 2015-03-04 深圳市银雁金融配套服务有限公司 Data calibration method and device
CN105930409A (en) * 2016-04-18 2016-09-07 深圳市永兴元科技有限公司 Data verification method and device based on dynamic generation rule

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
知识库的校验研究;胡长军等;《石油大学学报(自然科学版)》;19940630;第18卷(第3期);第105-108页 *

Also Published As

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

Similar Documents

Publication Publication Date Title
CN107329849B (en) Data verification method and system based on Java system
CN106919509B (en) Client generation method and device and electronic equipment
CN105912362B (en) A kind of method, apparatus and electronic equipment loading plug-in unit
CN104350808A (en) Device, method, and system for securely pairing mobile communication devices using movement
CN106168908A (en) Driver obtaining method, server and mobile terminal
CN103747013A (en) Cloud terminal login verification method and device
CN110399306B (en) Automatic testing method and device for software module
CN110147410B (en) Data verification method, system, device and equipment in block chain type account book
CN102833402A (en) Mobile terminal and method and device for unlocking same
CN103677814A (en) Procedure acquiring method, procedure acquiring device and procedure acquiring system
US10063533B2 (en) Protecting a web server against an unauthorized client application
CN112069008A (en) Equipment debugging information acquisition method and device and equipment debugging information generation method
CN105469783A (en) Audis identification method and device
CN109753644A (en) A kind of RichText Edition method, apparatus, mobile terminal and storage medium
CN107818043A (en) Method and apparatus for program debugging
CN107092474B (en) Program development method, ETL processing method and device
CN108241705B (en) Data insertion method and device
CN111078437B (en) Remote calling method and device for verification codes, electronic equipment and readable storage medium
CN110113296B (en) Method for processing data
CN105930378A (en) Method and system for processing HTML page nesting at background servers
CN106610899B (en) Test case generation method and device
CN112287327B (en) Method, device, medium and equipment for easily reconstructing single sign-on system
CN107995103B (en) Voice conversation method, voice conversation device and electronic equipment
CN110543371B (en) Method and device for remotely calling interface, electronic equipment and storage medium
CN108076067B (en) Method and system for authorized crawler configuration simulation login

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