CN106844071B - Method and device for acquiring input data - Google Patents

Method and device for acquiring input data Download PDF

Info

Publication number
CN106844071B
CN106844071B CN201510888683.3A CN201510888683A CN106844071B CN 106844071 B CN106844071 B CN 106844071B CN 201510888683 A CN201510888683 A CN 201510888683A CN 106844071 B CN106844071 B CN 106844071B
Authority
CN
China
Prior art keywords
input data
input
event
machine code
key
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
CN201510888683.3A
Other languages
Chinese (zh)
Other versions
CN106844071A (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.)
Cainiao Smart Logistics Holding Ltd
Original Assignee
Cainiao Smart Logistics Holding 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 Cainiao Smart Logistics Holding Ltd filed Critical Cainiao Smart Logistics Holding Ltd
Priority to CN201510888683.3A priority Critical patent/CN106844071B/en
Publication of CN106844071A publication Critical patent/CN106844071A/en
Application granted granted Critical
Publication of CN106844071B publication Critical patent/CN106844071B/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/006Identification
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/004Error avoidance
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/3055Monitoring arrangements for monitoring the status of the computing system or of the computing system component, e.g. monitoring if the computing system is on, off, available, not available

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Quality & Reliability (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Computing Systems (AREA)
  • User Interface Of Digital Computer (AREA)
  • Input From Keyboards Or The Like (AREA)

Abstract

The invention provides a method and a device for acquiring input data, wherein the method comprises the following steps: an application program monitors an input event of a specific input port; analyzing the machine code corresponding to the input event, and storing the input data obtained by analysis; and executing preset business logic on the input data. The invention can get rid of the limitation that the existing input data depends on the load of the input box, and can not cause the failure of the input data even if the data acquisition frequency is too fast or other abnormal operations cause the situations of losing focus or focus switching errors, and the like, thereby greatly reducing the error rate.

Description

Method and device for acquiring input data
[ technical field ] A method for producing a semiconductor device
The invention relates to the technical field of computer application, in particular to a method and a device for acquiring input data.
[ background of the invention ]
At present, computer software or a webpage generally uses input devices such as a keyboard and a mouse as main modes for inputting data, but for specific application scenarios such as warehouses and logistics, the input devices may also include a bar code scanner and a bluetooth electronic scale, and a user needs to use the mouse and the keyboard to add, delete, change and check data, and also needs to use the bar code scanner and the bluetooth electronic scale to collect and input data. However, input devices such as barcode scanners and bluetooth electronic scales are often limited by conditions such as input boxes and input methods, which results in failure to input data.
Specifically, currently, when inputting data, the input device must use the input box as a carrier, and only when there is a focus on the input box, the data can be correctly input. However, in many cases, factors such as too fast code scanning and abnormal operation may cause focus switching errors or loss, which may cause input data failure (including the case of input data errors or data input failure).
Even if the input frame has a focus, when data is collected and input, input data errors can be caused because the collected data type is not matched with the input method type. For example, assume that when a barcode scanner scans a barcode as shown in FIG. 1a, data "mika 1234" is collected, which is entered into an input box as shown in FIG. 1 b. However, if the current input method is a chinese input method, since the collection of data may generate (key) keyboard encoding events, i.e. parsing the key corresponding to the collected data, the input process of "mika 1" corresponding to the chinese input method is shown in fig. 1c, and the input result is "foraging coffee 234" as shown in fig. 1 d. Only when the current input method is an English input method, the correct input result can be generated after the key code corresponding to the acquired data is analyzed.
[ summary of the invention ]
The present invention provides a method and an apparatus for acquiring input data, so as to reduce the error rate of data input.
The specific technical scheme is as follows:
the invention provides a method for acquiring input data, which comprises the following steps:
an application program monitors an input event of a specific input port;
analyzing the machine code corresponding to the input event, and storing the input data obtained by analysis;
and executing preset business logic on the input data.
According to a preferred embodiment of the present invention, the application program includes: a web script JavaScript, a browser plug-in, or a client plug-in.
According to a preferred embodiment of the present invention, the specific input port includes: non-keyboard input ports.
According to a preferred embodiment of the present invention, the parsing the machine code corresponding to the input event includes:
and if the key release event is monitored, acquiring the machine code from the object attribute of the key release event.
According to a preferred embodiment of the present invention, the object attribute is a key code attribute, and the machine code is ASCII code.
According to a preferred embodiment of the present invention, when it is determined that the input data collection is finished, the preset business logic is executed on the input data.
According to a preferred embodiment of the present invention, the determining that the input data collection is finished comprises:
the machine code indicating the end of the acquisition is parsed.
According to a preferred embodiment of the present invention, the machine code indicating the end of the acquisition comprises:
an ASCII code with a value of 13.
According to a preferred embodiment of the present invention, the executing the preset service logic on the input data includes:
displaying the input data at the position of the current focus; or,
displaying the input data at a designated position of a page; or,
sending the input data to a server so that the server stores the input data in a database; or,
performing text editing processing on the input data; or,
and executing the component control operation bound with the input data.
According to a preferred embodiment of the present invention, the component control operation comprises:
locating a component on a web page or application interface, or,
selecting a component on a web page or application interface, or,
and triggering the function corresponding to the component on the webpage or the application interface.
The invention also provides a device for acquiring input data, which is arranged in an application program and comprises:
the monitoring unit is used for monitoring an input event of a specific input port;
the analysis unit is used for analyzing the machine code corresponding to the input event;
the storage unit is used for storing the input data obtained by analysis;
and the processing unit is used for executing preset service logic on the input data.
According to a preferred embodiment of the present invention, the application program includes: a web script JavaScript, a browser plug-in, or a client plug-in.
According to a preferred embodiment of the present invention, the specific input port includes: non-keyboard input ports.
According to a preferred embodiment of the present invention, the parsing unit is specifically configured to, if the monitoring unit monitors a key release event, obtain the machine code from an object attribute of the key release event.
According to a preferred embodiment of the present invention, the object attribute is a key code attribute, and the machine code is ASCII code.
According to a preferred embodiment of the present invention, the processing unit executes the preset service logic on the input data when determining that the input data collection is finished.
According to a preferred embodiment of the present invention, the processing unit determines that the input data collection is finished when the parsing unit parses a machine code indicating the end of the collection.
According to a preferred embodiment of the present invention, the machine code indicating the end of the acquisition comprises:
an ASCII code with a value of 13.
According to a preferred embodiment of the present invention, the processing unit specifically executes:
displaying the input data at the position of the current focus; or,
displaying the input data at a designated position of a page; or,
sending the input data to a server so that the server stores the input data in a database; or,
performing text editing processing on the input data; or,
and executing the component control operation bound with the input data.
According to a preferred embodiment of the present invention, the component control operation comprises:
locating a component on a web page or application interface, or,
selecting a component on a web page or application interface, or,
and triggering the function corresponding to the component on the webpage or the application interface.
According to the technical scheme, the method and the device provided by the invention monitor the input event of the specific input port through the application program, analyze and store the corresponding machine code, process the input data through the pre-hooked service logic, get rid of the limitation that the existing input data is loaded by an input frame, and even if the data acquisition frequency is too fast or other abnormal operations cause the situations of losing focus or focus switching errors, the input data failure can not be caused, so that the error rate is greatly reduced.
[ description of the drawings ]
FIG. 1a is a schematic view of a bar code;
FIG. 1b is a schematic diagram of an input box in a web page;
FIG. 1c is a diagram illustrating an input result corresponding to a Chinese input method when a conventional data input method is adopted;
FIG. 1d is a diagram illustrating an input result corresponding to an English input method when a conventional data input method is adopted;
FIG. 2 is a flow chart of a main method provided by the embodiment of the present invention;
fig. 3 is a diagram illustrating an apparatus according to an embodiment of the present invention.
[ detailed description ] embodiments
In order to make the objects, technical solutions and advantages of the present invention more apparent, the present invention will be described in detail with reference to the accompanying drawings and specific embodiments.
In the embodiment of the invention, the input event is monitored and analyzed by an application program for a specific input port. Wherein the specific input port may be a non-keyboard input port, and may include but is not limited to: the input port of data acquisition input type input equipment such as bar code scanner, bluetooth electronic scale. For convenience of description, the barcode scanner is taken as an example in the embodiments of the present invention.
In addition, the application programs referred to in the embodiments of the present invention refer to computer programs for performing one or more specific tasks, which run in a user mode, and are distinguished from operating system-type programs. The application program, as an execution subject of the method provided by the present invention, may take the following form, but is not limited to: for convenience of description, the embodiments of the present invention all use JavaScript as an example to describe JavaScript (page script), browser plug-in, client plug-in, and the like.
The "focus" referred to in the embodiments of the present invention refers to a position on a web page or an application interface where a cursor is activated to indicate which component is selected and can be operated.
Fig. 2 is a flowchart of a main method provided in an embodiment of the present invention, and as shown in fig. 2, the method may include:
in 201, the JavaScript on the page monitors the input event of the input port corresponding to the barcode scanner.
In the embodiment of the invention, the input event is monitored through the input port corresponding to the bar code scanner by the JavaScript of the page.
For the understanding of the present invention in this respect, the working principle of an input device such as a barcode scanner will first be briefly described: the data scanned by the barcode scanner may be equivalent to (interpreted by the operating system) a keyboard input when it is entered, e.g., when the barcode scanner scans data 1, which corresponds to a press, hold, and release event of the "1" key, the scanned data may be included in the object properties of the input event in the form of ASCII code.
Therefore, in this step, the input events heard by JavaScript would include: a key down event, a key press (keypress) event, and a key up event. The sequence of these three events is: a keydown event, a keypress event, and a keyup event. Similar to the order of occurrence of events for a key, i.e., pressing the key first, then holding the key, and finally lifting the key.
At 202, the JavaScript parses the machine code corresponding to the input event and stores the parsed input data.
For all the input events, which include object attributes, one of the object attributes is a key attribute, and obtaining an attribute value of the key attribute can obtain a corresponding machine code (for example, ASCII code, or other machine code forms such as custom code, etc.), and further determine data corresponding to the machine code, which is an analysis process of the machine code corresponding to the input event.
It should be noted that in the prior art implementation, the operating system also listens for input events, but some browser default events are triggered by a keypress event, such as inputting data into an input box (data is not necessarily displayed immediately), invoking an input method, and discarding the input data once the data input box fails. In the embodiment of the present invention, JavaScript analyzes the monitored keyup event, acquires an ASCII code from the keyode attribute of the keyup event, and analyzes the ASCII code to obtain input data. That is to say, in the embodiment of the present invention, the JavaScript analyzes and acquires the input data after the default event related to the operating system.
For the input data obtained by analysis, the JavaScript can sequentially store the input data in the memory, and can also store the input data in other local storage media.
In 203, a preset business logic is performed on the input data.
In the embodiment of the invention, various service logics can be hooked on JavaScript in advance according to service requirements, and the JavaScript executes the hooked service logics on the input data obtained by analysis. Wherein the business logic is not limited to inputting and displaying the input data at the current focus position (in the input box). The following are a few other available business logics:
1) in the logistics field, a salesperson scans a large number of bar codes, and if the scanned bar codes are in the mode in the prior art and the scanning frequency is too high or the scanning is not proper, the input box loses focus, and the scanned data is discarded. However, the business logic for inputting and displaying the input data at the designated position of the page can be hooked to the input data by adopting the mode provided by the embodiment of the invention. Therefore, the limitation of the focus of the input frame can be eliminated, and the input data obtained by analysis can be directly input into a designated position of a page, such as a designated input frame, from the memory.
2) For data which does not need to be displayed on a page, for example, a salesperson in a shopping mall scans a large number of bar codes to obtain commodity information, in order to record the commodity information into a database, the business logic for sending input data to a server can be hooked to the input data in advance. In this way, the JavaScript sends the obtained input data from the memory to the server in the embodiment of the present invention, so that the server stores the input data in the database. This eliminates the limitations of the page input box, focus, input method, etc.
3) For example, after a courier scans a large number of telephone numbers, since the courier often cares about the last four digits of the telephone numbers when delivering goods to distinguish customers, the JavaScript performs processing such as thickening or increasing the font size of the last four digits of the obtained input data by the method in the embodiment of the present invention.
4) Some character strings and component control operation can be bound one by one in advance, when a bar code scanner scans bar codes containing the character strings, whether input data obtained through analysis is bound with the component control operation or not is judged, and if yes, the component control operation bound with the input data is executed. Wherein the component control operations may include, but are not limited to: and positioning the components on the webpage or the application interface, or selecting the components on the webpage or the application interface, or triggering the functions corresponding to the components on the webpage or the application interface.
By binding the character string with the component control operation in advance, some user active events on a page or an application interface, such as clicking a certain button, triggering a certain function and the like, can be realized by scanning a specific bar code by using a bar code scanner. As an example, for a cashier in a supermarket, after scanning a barcode on a commodity, the cashier needs to manually click a specific function button on a cashier application interface through a keyboard, a mouse, or the like to implement functions of checking out a payment and printing a shopping receipt. The mode that the user manually switches among different input devices is very inconvenient, if a certain character string is bound with the functions of paying out and printing the shopping receipt in advance, namely the functions corresponding to specific function buttons used for paying out and printing the shopping receipt on a cash-receiving application interface, a bar code containing the character string is pasted on a cash-receiving counter, and after a cashier finishes scanning the bar code of a commodity, a bar code scanner is used for scanning the bar code containing the character string, so that the functions of paying out and printing the shopping receipt can be triggered. Obviously, the cashier can use the bar code scanner, so that the operation is smoother and more convenient, and the working efficiency is higher.
The hitched service logic can be flexibly set according to actual service requirements, and is not exhausted one by one.
Here, the case where input data is input and displayed at the current focus position will be described in detail. If the focus exists in the input box on the page at present, the operating system and the JavaScript monitor the input event, and input data obtained by analysis is input and displayed at the position of the current focus. However, because the event that the operating system inputs the input data into the input box is triggered by keypress, and the event that the JavaScript parses the input data is triggered by keyup, the processing of the JavaScript input data into the input box must occur after the operating system inputs the data into the input box, and then the processing result of the JavaScript will be overwritten by the processing result of the JavaScript, and for the user, it is the processing result of the JavaScript to finally input and display the data into the current focus position of the input box. Then the correctness of the final result is not affected whether the input error or failure occurs in the operating system or not.
Furthermore, when a user uses the barcode scanner to scan a plurality of barcodes continuously, each barcode scanner generates a machine code indicating the end of acquisition when scanning one barcode, the machine code is included in the keycode attribute of the input event together with the machine code of the input data included in the barcode, and for JavaScript, if the machine code indicating the end of acquisition is analyzed, the end of acquisition of the input data is determined, so that the input data of each barcode can be distinguished.
The above is a detailed description of the method provided by the present invention, and the following is a detailed description of the apparatus provided by the present invention with reference to the examples.
Fig. 3 is a structural diagram of a device according to an embodiment of the present invention, where the device is disposed in an application program, and the application program may include, but is not limited to, a page script JavaScript, a browser plug-in, a client plug-in, and as shown in fig. 3, the device may include: a monitoring unit 01, an analysis unit 02, a storage unit 03, and a processing unit 04.
The listening unit 01 is responsible for listening for input events of a specific input port. Wherein the specific input port may be a non-keyboard input port, and may include but is not limited to: the input port of data acquisition input type input equipment such as bar code scanner, bluetooth electronic scale. The heard input events may include keydown events, keypress events, and keyup events.
The parsing unit 02 is responsible for parsing the machine code corresponding to the input event. The input events all include object attributes, one of the object attributes is a key attribute, and obtaining an attribute value of the key attribute can obtain a corresponding machine code (for example, ASCII code), and further determine data corresponding to the machine code, which is an analysis process of the machine code corresponding to the input event. In the embodiment of the invention, a mode of acquiring the machine code from the keyup event is adopted. That is, if the monitoring unit 01 monitors the release key event, the parsing unit 02 obtains the machine code from the object attribute of the release key event.
The storage unit 03 is responsible for storing the input data obtained by the analysis, and may store the input data obtained by the analysis in the memory in sequence, or store the input data in other local storage media.
The processing unit 04 is responsible for executing preset business logic on the input data. In the embodiment of the present invention, various service logics may be hooked in advance according to service needs, and may specifically include but are not limited to: displaying the input data at the position of the current focus; or displaying the input data at the designated position of the page; or sending the input data to the server so that the server stores the input data in the database; or, text editing processing is carried out on the input data; alternatively, component control operations bound to input data are performed.
For the case of executing the component control operation bound with the input data, some character strings may be bound with the component control operation in advance, and after the input device collects the barcodes containing the character strings, the processing unit 04 may determine whether the analyzed input data is bound with the component control operation, and if so, execute the component control operation bound with the input data. Wherein the component control operations may include, but are not limited to: and positioning the components on the webpage or the application interface, or selecting the components on the webpage or the application interface, or triggering the functions corresponding to the components on the webpage or the application interface.
Preferably, in order to distinguish the input data, the processing unit 04 may execute a preset business logic on the input data when determining that the input data collection is finished. Wherein, each time the input device completes inputting an input datum, it can generate a machine code indicating the end of collection, such as ASCII code with value 13 (corresponding to enter key on keyboard), which is included in the key code attribute of the input event along with the machine code of the input datum. When the parsing unit 03 parses the machine code indicating the end of the acquisition, the processing unit 04 may determine that the input data acquisition is ended.
It can be seen from the above description that the method and apparatus provided by the present invention monitor the input event of a specific input port through an application program, analyze and store the corresponding machine code, and process the input data through the pre-hooked service logic, so as to get rid of the limitation that the existing input data is loaded by the input box, and even if the data acquisition frequency is too fast or other abnormal operations cause the situations of losing focus or focus switching errors, the input data failure will not be caused, and the error rate is greatly reduced. In addition, the user does not need to use a mouse or other input equipment to correct the focus, even does not need to care about various input boxes on the page, only needs to know the business process, namely what data is collected firstly and what data is collected secondly, and the like, so that the working efficiency of the user is improved.
When the method and the device provided by the invention are adopted to scan the bar code shown in the figure 1a and record the bar code into the input box shown in the figure 1b, the monitoring, the analysis and the storage of the input event are executed by application programs such as JavaScript, the analysis and the storage are triggered by the monitored keyup event, and the call of the input box and the input method in the operating system is triggered by the keypress event, so the input data analyzed by the application programs can cover the data input into the input box by the operating system, and the data in the input box is finally the original input data input by scanning and can be influenced by the type of the input method. Even if the Chinese input method is adopted, the final input result in the input box is mika 1234.
In the embodiments provided in the present invention, it should be understood that the disclosed apparatus and method may be implemented in other ways. For example, the above-described device embodiments are merely illustrative, and for example, the division of the units is only one logical functional division, and other divisions may be realized in practice.
In addition, functional units in the embodiments of the present invention may be integrated into one processing unit, or each unit may exist alone physically, or two or more units are integrated into one unit. The integrated unit can be realized in a form of hardware, or in a form of hardware plus a software functional unit.
The integrated unit implemented in the form of a software functional unit may be stored in a computer readable storage medium. The software functional unit is stored in a storage medium and includes several instructions to enable a computer device (which may be a personal computer, a server, or a network device) or a processor (processor) to execute some steps of the methods according to the embodiments of the present invention. And the aforementioned storage medium includes: various media capable of storing program codes, such as a usb disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like made within the spirit and principle of the present invention should be included in the scope of the present invention.

Claims (20)

1. A method of obtaining input data, the method comprising:
an application program monitors an input event of a specific input port;
analyzing the machine code corresponding to the input event, and storing the input data obtained by analysis;
executing preset business logic on the input data;
the input event is a keypress event, the operating system where the application program is located monitors the keypress event, and the keypress event is behind the keypress event; the machine code is obtained from a key attribute of a key up event; the executing the preset business logic on the input data comprises: and covering the processing result of the input data by the application program and the processing result of the input data by the operating system.
2. The method of claim 1, wherein the application comprises: a web script JavaScript, a browser plug-in, or a client plug-in.
3. The method of claim 1, wherein the particular input port comprises: non-keyboard input ports.
4. The method of claim 1, wherein parsing the machine code corresponding to the input event comprises:
and if the key release event is monitored, acquiring the machine code from the object attribute of the key release event.
5. The method of claim 4, wherein the object attribute is a key attribute and the machine code is ASCII code.
6. The method of claim 1, wherein the performing the pre-set business logic on the input data is performed upon determining that input data collection is complete.
7. The method of claim 6, wherein the determining that input data acquisition is complete comprises:
the machine code indicating the end of the acquisition is parsed.
8. The method of claim 7, wherein the machine code indicating the end of acquisition comprises:
an ASCII code with a value of 13.
9. The method of any of claims 1 to 8, wherein performing a predetermined business logic on the input data comprises:
displaying the input data at the position of the current focus; or,
displaying the input data at a designated position of a page; or,
sending the input data to a server so that the server stores the input data in a database; or,
performing text editing processing on the input data; or,
and executing the component control operation bound with the input data.
10. The method of claim 9, wherein the component control operation comprises:
locating a component on a web page or application interface, or,
selecting a component on a web page or application interface, or,
and triggering the function corresponding to the component on the webpage or the application interface.
11. An apparatus for obtaining input data, provided to an application, the apparatus comprising:
the monitoring unit is used for monitoring an input event of a specific input port;
the analysis unit is used for analyzing the machine code corresponding to the input event;
the storage unit is used for storing the input data obtained by analysis;
the processing unit is used for executing preset service logic on the input data;
the input event is a keypress event, the operating system where the application program is located monitors the keypress event, and the keypress event is behind the keypress event; the machine code is obtained from a key attribute of a key up event; the executing the preset business logic on the input data comprises: and covering the processing result of the input data by the application program and the processing result of the input data by the operating system.
12. The apparatus of claim 11, wherein the application program comprises: a web script JavaScript, a browser plug-in, or a client plug-in.
13. The apparatus of claim 11, wherein the particular input port comprises: non-keyboard input ports.
14. The apparatus according to claim 11, wherein the parsing unit is configured to obtain the machine code from the object attribute of the key-off event if the listening unit listens to the key-off event.
15. The apparatus of claim 14, wherein the object attribute is a key attribute and the machine code is ASCII code.
16. The apparatus of claim 11, wherein the processing unit executes the preset business logic on the input data upon determining that the input data collection is finished.
17. The apparatus of claim 16, wherein the processing unit determines that the input data collection is complete when the parsing unit parses a machine code indicating the end of the collection.
18. The apparatus of claim 17, wherein the machine code indicating the end of acquisition comprises:
an ASCII code with a value of 13.
19. The apparatus according to any one of claims 11 to 18, wherein the processing unit is configured to perform:
displaying the input data at the position of the current focus; or,
displaying the input data at a designated position of a page; or,
sending the input data to a server so that the server stores the input data in a database; or,
performing text editing processing on the input data; or,
and executing the component control operation bound with the input data.
20. The apparatus of claim 19, wherein the component control operations comprise:
locating a component on a web page or application interface, or,
selecting a component on a web page or application interface, or,
and triggering the function corresponding to the component on the webpage or the application interface.
CN201510888683.3A 2015-12-04 2015-12-04 Method and device for acquiring input data Active CN106844071B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201510888683.3A CN106844071B (en) 2015-12-04 2015-12-04 Method and device for acquiring input data

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201510888683.3A CN106844071B (en) 2015-12-04 2015-12-04 Method and device for acquiring input data

Publications (2)

Publication Number Publication Date
CN106844071A CN106844071A (en) 2017-06-13
CN106844071B true CN106844071B (en) 2020-09-22

Family

ID=59151874

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201510888683.3A Active CN106844071B (en) 2015-12-04 2015-12-04 Method and device for acquiring input data

Country Status (1)

Country Link
CN (1) CN106844071B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108874620B (en) * 2018-05-23 2021-11-23 北京五八信息技术有限公司 Event monitoring method, device and equipment applied to APP and storage medium
CN110888676B (en) * 2018-09-07 2024-05-17 北京京东振世信息技术有限公司 Shortcut key processing method and device
CN112578968B (en) * 2019-09-30 2024-04-30 菜鸟智能物流控股有限公司 Interface processing method and device of bar code acquisition equipment and electronic equipment
CN113268145B (en) * 2021-05-27 2023-01-03 青岛中科英泰商用系统股份有限公司 Physical input device input method, system, electronic device and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS63108481A (en) * 1986-10-27 1988-05-13 Tokyo Electric Co Ltd Data input device
CN101587530A (en) * 2008-05-19 2009-11-25 上海西门子医疗器械有限公司 Information input device for medical equipment
CN101847047A (en) * 2010-04-21 2010-09-29 上海感信医疗器械有限公司 Software instruction and data input system and method
CN104200252A (en) * 2014-08-25 2014-12-10 腾讯科技(深圳)有限公司 Bar code data-based functional logic jumping method, client and system
CN104461552A (en) * 2014-12-16 2015-03-25 用友软件股份有限公司 Bar code attribute analyzing method and bar code attribute analyzing device

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS63108481A (en) * 1986-10-27 1988-05-13 Tokyo Electric Co Ltd Data input device
CN101587530A (en) * 2008-05-19 2009-11-25 上海西门子医疗器械有限公司 Information input device for medical equipment
CN101847047A (en) * 2010-04-21 2010-09-29 上海感信医疗器械有限公司 Software instruction and data input system and method
CN104200252A (en) * 2014-08-25 2014-12-10 腾讯科技(深圳)有限公司 Bar code data-based functional logic jumping method, client and system
CN104461552A (en) * 2014-12-16 2015-03-25 用友软件股份有限公司 Bar code attribute analyzing method and bar code attribute analyzing device

Also Published As

Publication number Publication date
CN106844071A (en) 2017-06-13

Similar Documents

Publication Publication Date Title
CN106844071B (en) Method and device for acquiring input data
CN110688307B (en) JavaScript code detection method, device, equipment and storage medium
US11468226B2 (en) Systems and methods for presentation of a terminal application screen
US20160246481A1 (en) Extraction of multiple elements from a web page
CN111130987A (en) Automatic acquisition method and device for AWR report, electronic equipment and storage medium
CA2684822A1 (en) Data transformation based on a technical design document
KR101888860B1 (en) Log generator and big data analysis preprocessing system including the log generator
CN111144078B (en) Method, device, server and storage medium for determining positions to be marked in PDF (portable document format) file
CN111475694A (en) Data processing method, device, terminal and storage medium
CN112817817B (en) Buried point information query method, buried point information query device, computer equipment and storage medium
EP2610745A1 (en) Optimizing source code
CN107908525B (en) Alarm processing method, equipment and readable storage medium
US10635747B2 (en) Input device, form inputting method, non-transitory recording medium and program
CN113296760A (en) Method for generating model code, computer device and readable storage medium
US20220342794A1 (en) Operation logs acquiring device, operation logs acquiring method, and operation logs acquiring program
US8316318B2 (en) Named calculations and configured columns
CN111435326A (en) Method and device for analyzing crash logs
CN110045961B (en) Management method and management platform of business rules
CN115185797A (en) Method and system for testing visual algorithm model, electronic equipment and storage medium
CN109144755A (en) Webpage fault handling method and equipment
CN112612674A (en) Method, device, equipment and computer readable storage medium for monitoring buried point data
JP2009199172A (en) Information processing system, method for specifying similar parts inside program, and program
CN111008066A (en) Server-side interface analysis system, method, interface analysis device and medium
CN113127689B (en) Data processing method, device, equipment and storage medium
CN109933573B (en) Database service updating method, device and system

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

Effective date of registration: 20180419

Address after: Four story 847 mailbox of the capital mansion of Cayman Islands, Cayman Islands, Cayman

Applicant after: CAINIAO SMART LOGISTICS HOLDING Ltd.

Address before: Cayman Islands Grand Cayman capital building a four storey No. 847 mailbox

Applicant before: ALIBABA GROUP HOLDING Ltd.

TA01 Transfer of patent application right
GR01 Patent grant
GR01 Patent grant