CN110765097A - Data processing method and device, computer storage medium and electronic equipment - Google Patents

Data processing method and device, computer storage medium and electronic equipment Download PDF

Info

Publication number
CN110765097A
CN110765097A CN201810844990.5A CN201810844990A CN110765097A CN 110765097 A CN110765097 A CN 110765097A CN 201810844990 A CN201810844990 A CN 201810844990A CN 110765097 A CN110765097 A CN 110765097A
Authority
CN
China
Prior art keywords
data
character string
database
processing method
input 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.)
Pending
Application number
CN201810844990.5A
Other languages
Chinese (zh)
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 Jingdong Century Trading Co Ltd
Beijing Jingdong Shangke Information Technology Co Ltd
Original Assignee
Beijing Jingdong Century Trading Co Ltd
Beijing Jingdong Shangke Information Technology 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 Beijing Jingdong Century Trading Co Ltd, Beijing Jingdong Shangke Information Technology Co Ltd filed Critical Beijing Jingdong Century Trading Co Ltd
Priority to CN201810844990.5A priority Critical patent/CN110765097A/en
Publication of CN110765097A publication Critical patent/CN110765097A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The present disclosure relates to the field of computers, and provides a data processing method and apparatus, a computer storage medium, and an electronic device, wherein the data processing method includes: receiving input data from a user, the input data comprising expression data; converting the input data into a character string in a predetermined format; storing the character string in a database. The data processing method avoids upgrading and coding modification of the database when the expression characters are stored, and saves the labor input of development.

Description

Data processing method and device, computer storage medium and electronic equipment
Technical Field
The present disclosure relates to the field of computers, and in particular, to a data processing method, a data processing apparatus, a computer storage medium, and an electronic device.
Background
With the popularization of internet applications, more and more users choose to communicate through various chat tools, and during the communication, the users can use various Emoji (emoticons) to express moods and ideas in a large amount. Sometimes Emoji can express the mood of the sender better than the characters, and avoids the misunderstanding possibly caused by the simple characters, so that Emoji greatly enriches the life and communication of people.
If Emoji is to be stored directly, there are many requirements for the coding of the database, for example, the storage in MySQL generally requires that the connection between the database coding and the database is changed to utf8mb4, and the coding of the field storing the expression of Emoji is changed to utf8mb4_ general _ ci, and the MySQL database must be V5.5.3 and above, otherwise, other coding causes Emoji to become a piece of messy code during storage and reading. For storage in Oracle, the data is required to be transcoded by BASE64 before being stored, or the encoding of Oracle database is also designated utf8mb 4. For some projects which exist for a long time, the storage of Emoji may not be considered at the beginning of the design of the database, the version and the code of the database are not in accordance with the requirements, and it is troublesome to upgrade the database or modify the code at this time, and certain risks also exist.
In view of the above, there is a need in the art to develop a new data processing method and apparatus.
It is to be noted that the information disclosed in the background section above is only used to enhance understanding of the background of the present disclosure.
Disclosure of Invention
The present disclosure is directed to a data processing method, a data processing apparatus, a computer storage medium, and an electronic device, so as to avoid, at least to a certain extent, the need to code and modify and upgrade a database when storing Emoji.
Additional features and advantages of the disclosure will be set forth in the detailed description which follows, or in part will be obvious from the description, or may be learned by practice of the disclosure.
According to a first aspect of the present disclosure, there is provided a data processing method, comprising:
receiving input data from a user, the input data comprising expression data;
converting the input data into a character string in a predetermined format;
storing the character string in a database.
In an exemplary embodiment of the present disclosure, converting the input data into a character string of a predetermined format includes:
hex encoding the input data to form the string.
In an exemplary embodiment of the present disclosure, storing the character string in a database includes:
and storing the input data and the character string in the database by taking the input data as an index and the character string corresponding to the input data as an index value.
In an exemplary embodiment of the present disclosure, the method further comprises:
receiving an acquisition request of a user;
searching a target character string corresponding to the acquisition request in the database according to the acquisition request;
and converting the target character string into display data, and returning the display data to the user.
In an exemplary embodiment of the present disclosure, the obtaining request includes data to be displayed, and according to the obtaining request, searching the database for a target character string corresponding to the text obtaining request includes:
judging whether an index matched with the data to be displayed exists in the database or not;
and if so, extracting a target character string corresponding to the data to be displayed by taking the data to be displayed as an index.
In an exemplary embodiment of the present disclosure, converting the target character string into presentation data includes:
and carrying out Hex decoding on the target character string to obtain the display data.
In an exemplary embodiment of the present disclosure, the method further comprises:
when the obtaining request is an expressive character obtaining request, searching a target character string corresponding to the expressive character obtaining request in the database according to the expressive character obtaining request;
carrying out Hex decoding on the target character string to obtain expression characters;
and returning the expression characters to the user.
According to a second aspect of the present disclosure, there is provided a data processing apparatus, comprising:
the receiving module is used for receiving input data from a user, wherein the input data comprises expression data;
the conversion module is used for converting the input data into a character string in a preset format;
and the storage module is used for storing the character strings in a database.
According to a third aspect of the present disclosure, there is provided a computer storage medium having a computer program stored thereon, wherein the computer program, when executed by a processor, implements the data processing method described above.
According to a fourth aspect of the present disclosure, there is provided an electronic apparatus, comprising:
a processor; and
a memory for storing executable instructions of the processor;
wherein the processor is configured to perform the data processing method described above via execution of the executable instructions.
As can be seen from the foregoing technical solutions, the data processing method, the data processing apparatus, the computer storage medium and the electronic device in the exemplary embodiments of the present disclosure have at least the following advantages and positive effects:
the data processing method in the present disclosure converts input data from a user into a character string of a predetermined format by encoding, the input data including expression data, and the character string of the predetermined format being capable of being directly stored in a database; when a user needs to acquire the display data, the display data can be obtained by acquiring the corresponding character string from the database and then decoding the character string. The data processing method avoids upgrading and coding modification of the database when the expression characters are stored, and saves the labor input of development.
It is to be understood that both the foregoing general description and the following detailed description are exemplary and explanatory only and are not restrictive of the disclosure.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments consistent with the present disclosure and together with the description, serve to explain the principles of the disclosure. It is to be understood that the drawings in the following description are merely exemplary of the disclosure, and that other drawings may be derived from those drawings by one of ordinary skill in the art without the exercise of inventive faculty.
FIG. 1 shows a flow diagram of a data processing method in an exemplary embodiment of the present disclosure;
FIG. 2 is a diagram illustrating an example of an application scenario of a data processing method in an exemplary embodiment of the present disclosure;
FIG. 3 illustrates a flow diagram for storing input data in an exemplary embodiment of the present disclosure;
FIG. 4 illustrates a flow diagram for obtaining presentation data in an exemplary embodiment of the present disclosure;
FIG. 5 shows a schematic block diagram of a data processing apparatus in an exemplary embodiment of the present disclosure;
FIG. 6 shows a schematic diagram of a structure of a computer storage medium in an exemplary embodiment of the disclosure;
fig. 7 shows a schematic structural diagram of an electronic device in an exemplary embodiment of the present disclosure.
Detailed Description
Example embodiments will now be described more fully with reference to the accompanying drawings. Example embodiments may, however, be embodied in many different forms and should not be construed as limited to the examples set forth herein; rather, these embodiments are provided so that this disclosure will be thorough and complete, and will fully convey the concept of example embodiments to those skilled in the art. The described features, structures, or characteristics may be combined in any suitable manner in one or more embodiments. In the following description, numerous specific details are provided to give a thorough understanding of embodiments of the disclosure. One skilled in the relevant art will recognize, however, that the subject matter of the present disclosure can be practiced without one or more of the specific details, or with other methods, components, devices, steps, and the like. In other instances, well-known technical solutions have not been shown or described in detail to avoid obscuring aspects of the present disclosure.
The terms "a," "an," "the," and "said" are used in this specification to denote the presence of one or more elements/components/parts/etc.; the terms "comprising" and "having" are intended to be inclusive and mean that there may be additional elements/components/etc. other than the listed elements/components/etc.; the terms "first" and "second", etc. are used merely as labels, and are not limiting on the number of their objects.
Furthermore, the drawings are merely schematic illustrations of the present disclosure and are not necessarily drawn to scale. The same reference numerals in the drawings denote the same or similar parts, and thus their repetitive description will be omitted. Some of the block diagrams shown in the figures are functional entities and do not necessarily correspond to physically or logically separate entities.
In the related art, in order to store Emoji in the database, the database is usually required to be upgraded and modified, for example, when storing Emoji in MySQL, the MySQL database is required to be V5.5.3 and above, and the database is coded to utf8mb4, the field for storing Emoji expression is coded to utf8mb4_ general _ ci, and the connection of the database is changed to utf8mb4, otherwise, other codes may cause Emoji to become a piece of messy code during storing and reading. For storage in Oracle, it is required that the data is transcoded by BASE64 before being stored, or the encoding of Oracle database is also designated utf8mb 4.
However, the related art has corresponding problems, for example, for some projects which exist in the past, the storage of Emoji may not be considered at the beginning of the database design, the version and the code of the database are not satisfactory, and then it is troublesome to upgrade the database or modify the code, and there is a certain risk.
In view of the problems in the related art, the present disclosure provides a data processing method, and fig. 1 shows a flowchart of the data processing method, where as shown in fig. 1, the data processing method includes:
step S110: receiving input data from a user, the input data comprising expression data;
step S120: converting the input data into a character string in a predetermined format;
step S130: storing the character string in a database.
According to the data processing method, the input data comprising the expression data are converted into the character strings in the preset format and stored in the database, so that the condition that the database needs to be upgraded and coded and modified when the expression data are stored is avoided, and the development labor input is reduced.
The following describes each step of the data processing method in detail with reference to the structure shown in fig. 2.
In step S110, input data from a user is received, the input data including emotion data.
In the exemplary embodiment of the present disclosure, taking the example that the user performs text chatting through the chatting tool, the user inputs data in the dialog box through the input device connected to the terminal device 201 on the display interface of the terminal device 201, where the data may be input through a device connected to the terminal device 201 externally, such as a keyboard, a mouse, a touch-screen pen, or the like, or may be input through touching the touch-screen of the terminal device 201 with a finger. The data may be input data including character data and expression data, or input data including only character data or only expression data, where the characters may be characters of various languages, such as chinese characters, english letters, korean, and the like.
In step S120, the input data is converted into a character string of a predetermined format.
In an exemplary embodiment of the present disclosure, fig. 3 shows a flowchart for storing input data, as shown in fig. 3, in step S301, a user transmits the input data through the terminal device 201; in step S302, after receiving the input data of the user, the server 202 converts the data format of the input data to form data matching the data storage format of the database; in step S303, the converted data is stored in a database.
When the input data only contains the expression data, the expression data can be converted into hexadecimal character strings because the essence of the expression data is the hexadecimal character strings, and then the hexadecimal character strings corresponding to the expression data are stored in the database. In the present disclosure, a data format conversion may be performed on input data by using a Hex encoding method, and the Hex encoding method in the present disclosure may encode the expression data by using an org.apache.comms.codec.binder in a jar packet common-codec.jar provided by Apache, so as to implement the data format conversion, specifically, the conversion statement is: string hexstring ═ new String (Hex. encodehs (emoji. getbytes ())), and through the above conversion, the expression data is converted into a hexadecimal String (Hex String). The format of the converted character string is the same as the data storage format in the database, so that the expression data can be stored without upgrading and coding modification of the database.
When the input data only contains text data or contains expression data and text data, the text data and the expression data can be converted into hexadecimal character strings according to the conversion method and then stored in the database. It is noted that the database in the present disclosure may be a SQL, MySQL, Oracle, etc. type database, which is not specifically limited in the present disclosure.
In step S130, the character string is stored in a database.
In an exemplary embodiment of the present disclosure, after converting the input data into a hexadecimal string, the hexadecimal string may be stored in a database.
Further, the database may be a relational database, and when storing the hexadecimal character strings, the input data and the corresponding character strings may be stored in the database at the same time with the input data as an index and the character strings corresponding to the input data as index values, so as to obtain the corresponding character strings according to the input data.
In an exemplary embodiment of the disclosure, fig. 4 shows a schematic flow chart of obtaining presentation data, as shown in fig. 4, specifically the flow chart is as follows:
step S401: receiving an acquisition request of a user;
in the exemplary embodiment of the present disclosure, a user sends chat information to another user through the terminal device 201, where the chat information includes an acquisition request, and the acquisition request is a request for acquiring data to be presented.
Step S402: searching a target character string corresponding to the acquisition request in the database according to the acquisition request;
in the exemplary embodiment of the present disclosure, after receiving the obtaining request, the server 202 matches the data to be displayed in the obtaining request with the index in the database, and determines whether there is an index matching the data to be displayed; and when the matched index exists, taking the data to be displayed as the index, and extracting the target character string corresponding to the data to be displayed from the database.
Step S403: and converting the target character string into display data, and returning the display data to the user.
In an exemplary embodiment of the present disclosure, after the target character string is obtained, a data format of the target character string may be converted to obtain the corresponding presentation data. In the present disclosure, a Hex decoding method may be adopted to perform data format conversion on the target character string to obtain the presentation data, and return the presentation data to the user.
Specifically, the display data may be emoji characters, and after obtaining the emoji character acquisition request, the display data searches for a target character string corresponding to the emoji character acquisition request from the database, and then performs Hex decoding to obtain the emoji characters. When the target character string is decoded by adopting a Hex decoding method, the conversion statement is as follows: the expression characters can be obtained by converting the String emoji (new String) (hex. The server 202 then returns the emoji text to the user and presents it on the display of the terminal device 201.
It should be noted that the encoding method and the decoding method adopted for data format conversion in the present disclosure may also be other encoding/decoding methods, and the Hex encoding method and the Hex decoding method disclosed in the present disclosure are only exemplary and are not meant as a specific limitation to the present disclosure.
According to the method and the device, the input data are coded to form the data matched with the storage format of the database so as to be stored in the database, when a user wants to obtain the display data, the corresponding character strings are extracted from the database and decoded to obtain the display data, the condition that the database needs to be upgraded and coded and modified when the expression characters are stored is avoided, and the development labor input is reduced.
The present disclosure also provides a data processing apparatus, fig. 5 shows a schematic structural diagram of the data processing apparatus, and as shown in fig. 5, the data processing apparatus 500 may include a receiving module 501, a converting module 502 and a storing module 503. Wherein:
a receiving module 501, configured to receive input data from a user, where the input data includes expression data;
a conversion module 502, configured to convert the input data into a character string in a predetermined format;
a storage module 503, configured to store the character string in a database.
The specific details of each module in the data processing apparatus have been described in detail in the corresponding data processing method, and therefore are not described herein again.
It should be noted that although in the above detailed description several modules or units of the device for action execution are mentioned, such a division is not mandatory. Indeed, the features and functionality of two or more modules or units described above may be embodied in one module or unit, according to embodiments of the present disclosure. Conversely, the features and functions of one module or unit described above may be further divided into embodiments by a plurality of modules or units.
Moreover, although the steps of the methods of the present disclosure are depicted in the drawings in a particular order, this does not require or imply that the steps must be performed in this particular order, or that all of the depicted steps must be performed, to achieve desirable results. Additionally or alternatively, certain steps may be omitted, multiple steps combined into one step execution, and/or one step broken down into multiple step executions, etc.
Through the above description of the embodiments, those skilled in the art will readily understand that the exemplary embodiments described herein may be implemented by software, or by software in combination with necessary hardware. Therefore, the technical solution according to the embodiments of the present disclosure may be embodied in the form of a software product, which may be stored in a non-volatile storage medium (which may be a CD-ROM, a usb disk, a removable hard disk, etc.) or on a network, and includes several instructions to enable a computing device (which may be a personal computer, a server, a mobile terminal, or a network device, etc.) to execute the method according to the embodiments of the present disclosure.
In an exemplary embodiment of the present disclosure, an electronic device capable of implementing the above method is also provided.
As will be appreciated by one skilled in the art, aspects of the present invention may be embodied as a system, method or program product. Thus, various aspects of the invention may be embodied in the form of: an entirely hardware embodiment, an entirely software embodiment (including firmware, microcode, etc.) or an embodiment combining hardware and software aspects that may all generally be referred to herein as a "circuit," module "or" system.
An electronic device 600 according to this embodiment of the invention is described below with reference to fig. 6. The electronic device 600 shown in fig. 6 is only an example, and should not bring any limitation to the functions and the scope of use of the embodiments of the present invention.
As shown in fig. 6, the electronic device 600 is embodied in the form of a general purpose computing device. The components of the electronic device 600 may include, but are not limited to: the at least one processing unit 610, the at least one memory unit 620, and a bus 630 that couples the various system components including the memory unit 620 and the processing unit 610.
Wherein the storage unit stores program code that is executable by the processing unit 610 to cause the processing unit 610 to perform steps according to various exemplary embodiments of the present invention as described in the above section "exemplary methods" of the present specification. For example, the processing unit 610 may perform step S110 as shown in fig. 1: receiving input data from a user, the input data comprising expression data; step S120: converting the input data into a character string in a predetermined format; step S130: storing the character string in a database.
The storage unit 620 may include readable media in the form of volatile memory units, such as a random access memory unit (RAM)6201 and/or a cache memory unit 6202, and may further include a read-only memory unit (ROM) 6203.
The memory unit 620 may also include a program/utility 6204 having a set (at least one) of program modules 6205, such program modules 6205 including, but not limited to: an operating system, one or more application programs, other program modules, and program data, each of which, or some combination thereof, may comprise an implementation of a network environment.
Bus 630 may be one or more of several types of bus structures, including a memory unit bus or memory unit controller, a peripheral bus, an accelerated graphics port, a processing unit, or a local bus using any of a variety of bus architectures.
The electronic device 600 may also communicate with one or more external devices 1100 (e.g., keyboard, pointing device, bluetooth device, etc.), with one or more devices that enable a user to interact with the electronic device 600, and/or with any devices (e.g., router, modem, etc.) that enable the electronic device 600 to communicate with one or more other computing devices. Such communication may occur via an input/output (I/O) interface 650. Also, the electronic device 600 may communicate with one or more networks (e.g., a Local Area Network (LAN), a Wide Area Network (WAN), and/or a public network such as the Internet) via the network adapter 660. As shown, the network adapter 660 communicates with the other modules of the electronic device 600 over the bus 630. It should be appreciated that although not shown in the figures, other hardware and/or software modules may be used in conjunction with the electronic device 600, including but not limited to: microcode, device drivers, redundant processing units, external disk drive arrays, RAID systems, tape drives, and data backup storage systems, among others.
Through the above description of the embodiments, those skilled in the art will readily understand that the exemplary embodiments described herein may be implemented by software, or by software in combination with necessary hardware. Therefore, the technical solution according to the embodiments of the present disclosure may be embodied in the form of a software product, which may be stored in a non-volatile storage medium (which may be a CD-ROM, a usb disk, a removable hard disk, etc.) or on a network, and includes several instructions to enable a computing device (which may be a personal computer, a server, a terminal device, or a network device, etc.) to execute the method according to the embodiments of the present disclosure.
In an exemplary embodiment of the present disclosure, there is also provided a computer storage medium having stored thereon a program product capable of implementing the above-described method of the present specification. In some possible embodiments, aspects of the invention may also be implemented in the form of a program product comprising program code means for causing a terminal device to carry out the steps according to various exemplary embodiments of the invention described in the above section "exemplary methods" of the present description, when said program product is run on the terminal device.
Referring to fig. 7, a program product 700 for implementing the above method according to an embodiment of the present invention is described, which may employ a portable compact disc read only memory (CD-ROM) and include program code, and may be run on a terminal device, such as a personal computer. However, the program product of the present invention is not limited in this regard and, in the present document, a readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device.
The program product may employ any combination of one or more readable media. The readable medium may be a readable signal medium or a readable storage medium. A readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples (a non-exhaustive list) of the readable storage medium include: an electrical connection having one or more wires, a portable disk, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing.
A computer readable signal medium may include a propagated data signal with readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A readable signal medium may also be any readable medium that is not a readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device.
Program code embodied on a readable medium may be transmitted using any appropriate medium, including but not limited to wireless, wireline, optical fiber cable, RF, etc., or any suitable combination of the foregoing.
Program code for carrying out operations for aspects of the present invention may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, C + + or the like and conventional procedural programming languages, such as the "C" programming language or similar programming languages. The program code may execute entirely on the user's computing device, partly on the user's device, as a stand-alone software package, partly on the user's computing device and partly on a remote computing device, or entirely on the remote computing device or server. In the case of a remote computing device, the remote computing device may be connected to the user computing device through any kind of network, including a Local Area Network (LAN) or a Wide Area Network (WAN), or may be connected to an external computing device (e.g., through the internet using an internet service provider).
Furthermore, the above-described figures are merely schematic illustrations of processes involved in methods according to exemplary embodiments of the invention, and are not intended to be limiting. It will be readily understood that the processes shown in the above figures are not intended to indicate or limit the chronological order of the processes. In addition, it is also readily understood that these processes may be performed synchronously or asynchronously, e.g., in multiple modules.
Other embodiments of the disclosure will be apparent to those skilled in the art from consideration of the specification and practice of the disclosure disclosed herein. This application is intended to cover any variations, uses, or adaptations of the disclosure following, in general, the principles of the disclosure and including such departures from the present disclosure as come within known or customary practice within the art to which the disclosure pertains. It is intended that the specification and examples be considered as exemplary only, with a true scope and spirit of the disclosure being indicated by the following claims.

Claims (10)

1. A data processing method, comprising:
receiving input data from a user, the input data comprising expression data;
converting the input data into a character string in a predetermined format;
storing the character string in a database.
2. The data processing method of claim 1, wherein converting the input data into a character string of a predetermined format comprises:
hex encoding the input data to form the string.
3. The data processing method of claim 1, wherein storing the string in a database comprises:
and storing the input data and the character string in the database by taking the input data as an index and the character string corresponding to the input data as an index value.
4. A data processing method according to claim 3, characterized in that: the method further comprises the following steps:
receiving an acquisition request of a user;
searching a target character string corresponding to the acquisition request in the database according to the acquisition request;
and converting the target character string into display data, and returning the display data to the user.
5. The data processing method of claim 4, wherein the obtaining request includes data to be displayed, and searching the database for a target character string corresponding to the text obtaining request according to the obtaining request comprises:
judging whether an index matched with the data to be displayed exists in the database or not;
and if so, extracting a target character string corresponding to the data to be displayed by taking the data to be displayed as an index.
6. The data processing method of claim 5, wherein converting the target string into presentation data comprises:
and carrying out Hex decoding on the target character string to obtain the display data.
7. A data processing method according to any one of claims 4 to 6, characterized in that the method further comprises:
when the obtaining request is an expressive character obtaining request, searching a target character string corresponding to the expressive character obtaining request in the database according to the expressive character obtaining request;
carrying out Hex decoding on the target character string to obtain expression characters;
and returning the expression characters to the user.
8. A data processing apparatus, comprising:
the receiving module is used for receiving input data from a user, wherein the input data comprises expression data;
the conversion module is used for converting the input data into a character string in a preset format;
and the storage module is used for storing the character strings in a database.
9. A computer storage medium on which a computer program is stored, the computer program, when executed by a processor, implementing the data processing method of any one of claims 1 to 7.
10. An electronic device, comprising:
a processor; and
a memory for storing executable instructions of the processor;
wherein the processor is configured to perform the data processing method of any one of claims 1 to 7 via execution of the executable instructions.
CN201810844990.5A 2018-07-27 2018-07-27 Data processing method and device, computer storage medium and electronic equipment Pending CN110765097A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810844990.5A CN110765097A (en) 2018-07-27 2018-07-27 Data processing method and device, computer storage medium and electronic equipment

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810844990.5A CN110765097A (en) 2018-07-27 2018-07-27 Data processing method and device, computer storage medium and electronic equipment

Publications (1)

Publication Number Publication Date
CN110765097A true CN110765097A (en) 2020-02-07

Family

ID=69327062

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810844990.5A Pending CN110765097A (en) 2018-07-27 2018-07-27 Data processing method and device, computer storage medium and electronic equipment

Country Status (1)

Country Link
CN (1) CN110765097A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116796705A (en) * 2023-08-09 2023-09-22 腾讯科技(深圳)有限公司 Method and device for detecting expression, electronic equipment and storage medium

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116796705A (en) * 2023-08-09 2023-09-22 腾讯科技(深圳)有限公司 Method and device for detecting expression, electronic equipment and storage medium
CN116796705B (en) * 2023-08-09 2024-03-12 腾讯科技(深圳)有限公司 Method and device for detecting expression, electronic equipment and storage medium

Similar Documents

Publication Publication Date Title
CN110287278B (en) Comment generation method, comment generation device, server and storage medium
CN110069608B (en) Voice interaction method, device, equipment and computer storage medium
CN109002510B (en) Dialogue processing method, device, equipment and medium
CN104765750B (en) Input language switching method and device in input method application
US11256773B2 (en) Document online preview method and device
CN110554875B (en) Code conversion method and device, electronic equipment and storage medium
CN111736840A (en) Compiling method and running method of applet, storage medium and electronic equipment
CN110797005A (en) Prosody prediction method, apparatus, device, and medium
US20220027575A1 (en) Method of predicting emotional style of dialogue, electronic device, and storage medium
CN111708753A (en) Method, device and equipment for evaluating database migration and computer storage medium
US10049108B2 (en) Identification and translation of idioms
CN113139390A (en) Language conversion method and device applied to code character strings
CN111026400A (en) Method and device for analyzing service data stream
CN112966824A (en) Deployment method and device of inference library and electronic equipment
US20220303260A1 (en) Method for synchronizing verificaion code, electronic device
CN113378579A (en) Method, system and electronic equipment for voice input of structured data
CN112003712A (en) Service processing method, electronic device and computer readable storage medium
JP7309811B2 (en) Data annotation method, apparatus, electronics and storage medium
CN111078228A (en) Method and device for converting webpage into small program, server and storage medium
CN109753644B (en) Rich text editing method and device, mobile terminal and storage medium
CN110807111A (en) Three-dimensional graph processing method and device, storage medium and electronic equipment
US8788257B1 (en) Unified cross platform input method framework
CN110765097A (en) Data processing method and device, computer storage medium and electronic equipment
CN110362688B (en) Test question labeling method, device and equipment and computer readable storage medium
US10769372B2 (en) Synonymy tag obtaining method and apparatus, device and computer readable storage medium

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