CN108897605B - Method and device for embedding desktop application program into webpage - Google Patents

Method and device for embedding desktop application program into webpage Download PDF

Info

Publication number
CN108897605B
CN108897605B CN201810817743.6A CN201810817743A CN108897605B CN 108897605 B CN108897605 B CN 108897605B CN 201810817743 A CN201810817743 A CN 201810817743A CN 108897605 B CN108897605 B CN 108897605B
Authority
CN
China
Prior art keywords
object information
data
webpage
desktop application
application program
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
CN201810817743.6A
Other languages
Chinese (zh)
Other versions
CN108897605A (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 Winsion Technology Co ltd
Original Assignee
Beijing Winsion 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 Winsion Technology Co ltd filed Critical Beijing Winsion Technology Co ltd
Priority to CN201810817743.6A priority Critical patent/CN108897605B/en
Publication of CN108897605A publication Critical patent/CN108897605A/en
Application granted granted Critical
Publication of CN108897605B publication Critical patent/CN108897605B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45504Abstract machines for programme code execution, e.g. Java virtual machine [JVM], interpreters, emulators
    • G06F9/45529Embedded in an application, e.g. JavaScript in a Web browser

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

The embodiment of the invention provides a method and a device for embedding a desktop application program into a webpage, wherein the method comprises the following steps: binding and registering object information of data operation based on an object memory of the embedded framework; when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format matched with the webpage according to the registered object information operated by the data; and calling a response method corresponding to the current object information based on the converted object information, and feeding back an execution result of the response method to the desktop application program. By the method and the device, the data interaction between the desktop application program and the webpage can be accurately and quickly completed only by occupying less memory.

Description

Method and device for embedding desktop application program into webpage
Technical Field
The invention relates to the technical field of computers, in particular to a method and a device for embedding a desktop application program into a webpage.
Background
With the development of computer technology, the functions of application programs are also more powerful, the application programs often need to interact data with web pages, and in the prior art, the data interaction between the application programs and the web pages is usually realized through an embedded framework of a web browser developed by Google.
In the process of implementing the invention, the inventor finds that at least the following problems exist in the prior art: 1. JS (JavaScript, an transliteration scripting language) in a web page calls a page development language, such as C # (an object-oriented high-level programming language published by microsoft that runs over. NET Framework), which is cumbersome; 2. when the webpage is closed in the webpage loading process, the process cannot exit; 3. the class object must inherit all the operation methods in the preset class and must be written in the preset method of the class; 4. all properties and methods of the class object need to write out a corresponding JS script, and register and bind the JS script; 5. if different data operations are executed, a large number of class objects need to be written; 6. if the foreground page is updated or the attributes and methods of the classes are updated, complex subsequent linkage updating operation can be generated.
Disclosure of Invention
The embodiment of the invention provides a method and a device for embedding a desktop application program into a webpage, which can realize that data interaction between the desktop application program and the webpage can be accurately and quickly completed only by occupying less memory.
In one aspect, an embodiment of the present invention provides a method for embedding a desktop application into a web page, including:
binding and registering object information of data operation based on an object memory of the embedded framework;
when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format matched with the webpage according to the registered object information operated by the data;
and calling a response method corresponding to the current object information based on the converted object information, and feeding back an execution result of the response method to the desktop application program.
On the other hand, an embodiment of the present invention provides a device for embedding a desktop application into a web page, including:
the binding and registering module is used for binding and registering the object information of the data operation based on the object memory of the embedded framework;
the conversion module is used for converting a data format in the object information into a data format matched with the webpage according to the registered object information operated by the data when the data sent to the webpage by the desktop application program is detected;
and the feedback module is used for calling a response method corresponding to the current object information based on the converted object information and feeding back an execution result of the response method to the desktop application program.
The technical scheme has the following beneficial effects: the object information of the data operation is bound and registered through the object memory based on the embedded framework, and necessary precondition guarantee is provided for acquiring the object information accurately and quickly in the follow-up process; when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format adaptive to the webpage according to object information of registered data operation, and providing necessary preconditions for realizing data interaction between the desktop application program and the webpage; based on the converted object information, a response method corresponding to the current object information is called, and an execution result of the response method is fed back to the desktop application program, so that accurate and rapid data interaction between the desktop application program and the webpage can be completed only by occupying less memory.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
FIG. 1 is a flowchart illustrating a method for embedding a desktop application into a web page according to an embodiment of the present invention;
fig. 2 is a schematic structural diagram of an apparatus for embedding a desktop application into a web page according to another embodiment of 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.
As shown in fig. 1, a flowchart of a method for embedding a desktop application into a web page in an embodiment of the present invention includes:
101. binding and registering object information of data operation based on an object memory of the embedded framework;
102. when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format matched with the webpage according to the registered object information operated by the data;
103. and calling a response method corresponding to the current object information based on the converted object information, and feeding back an execution result of the response method to the desktop application program.
Preferably, before the step of binding and registering object information of the data operation in the embedded framework-based object storage, the method includes:
initializing a webpage rendering method;
the data objects of the embedded framework are initialized.
Preferably, the object storage based on the embedded framework, binding and registering object information of the data operation, includes:
and managing the access operation of each object based on the object memory of the embedded framework.
Preferably, when it is detected that data is sent to a web page through a desktop application, converting a data format in object information into a data format adapted to the web page according to object information operated by registered data, including:
when detecting that data are sent to a webpage through a desktop application program, registering corresponding script information in the webpage according to object information of registered data operation;
and correspondingly processing the data sent by the desktop application program in the webpage according to the registered script information.
Preferably, the invoking a response method corresponding to the current object information based on the converted object information includes:
based on the converted object information, calling a response method corresponding to the current object information in a reflection mode; or
And calling a response method corresponding to the current object information in a delegating mode based on the converted object information.
Fig. 2 is a schematic structural diagram of an apparatus for embedding a desktop application into a web page according to another embodiment of the present invention, including:
a binding and registering module 21 for binding and registering object information of the data operation based on the object storage of the embedded framework;
the conversion module 22 is configured to, when it is detected that data is sent to a web page through a desktop application, convert a data format in object information into a data format adapted to the web page according to object information operated by registered data;
and the feedback module 23 is configured to call a response method corresponding to the current object information based on the converted object information, and feed back an execution result of the response method to the desktop application.
Preferably, the method comprises the following steps:
the first initialization module is used for initializing a webpage rendering method;
and the second initialization module is used for initializing the data object of the embedded framework.
Preferably, the binding and registering module includes:
and the management unit is used for managing the access operation of each object based on the object memory of the embedded framework.
Preferably, the conversion module includes:
the registration unit is used for registering corresponding script information in the webpage according to the registered object information of data operation when detecting that data are sent to the webpage through the desktop application program;
and the processing unit is used for correspondingly processing the data sent by the desktop application program in the webpage according to the registered script information.
Preferably, the feedback module is particularly for
Based on the converted object information, calling a response method corresponding to the current object information in a reflection mode; or
And calling a response method corresponding to the current object information in a delegating mode based on the converted object information.
The technical scheme of the embodiment of the invention has the following beneficial effects: the object information of the data operation is bound and registered through the object memory based on the embedded framework, and necessary precondition guarantee is provided for acquiring the object information accurately and quickly in the follow-up process; when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format adaptive to the webpage according to object information of registered data operation, and providing necessary preconditions for realizing data interaction between the desktop application program and the webpage; based on the converted object information, a response method corresponding to the current object information is called, and an execution result of the response method is fed back to the desktop application program, so that accurate and rapid data interaction between the desktop application program and the webpage can be completed only by occupying less memory.
The above technical solutions of the embodiments of the present invention are described in detail below with reference to application examples:
the application example of the invention aims to complete accurate and rapid data interaction between the desktop application program and the webpage only by occupying less memory.
In a preferred real-time example, a class for implementing a rendering process callback is defined, such as class a, which inherits from a base class in Xilium CefGlue (a WebKit kernel browser item based on chrome Embedded Framework), and then, a WebKit object is initialized; then, based on an embedded framework Xilium CefGlue object memory, binding and registering object information of data operation, using a delegation to call back in an execution method of a binding class, such as ClassBinding, to call back a code to be operated, then instantiating the binding class ClassBinding in an initialization method, calling a custom-packaged class library, namely automatically generating JS script codes, registering JS scripts through a preset registration method, when detecting that data is sent to a webpage, such as W, through a desktop application program, such as APP1, calling a response method corresponding to the current object information according to the registered object information of the data operation, and feeding back an execution result of the response method to the desktop application program.
It should be noted that Xilium CefGlue is a WebKit kernel browser project based on Chrome Embedded Framework (CEF) and is variously packaged with. NET, as will be understood by those skilled in the art. The project has many advantages, and the kernel is continuously updated, so that the project has a good prospect. CEF is an open source Web browser control based on the Google chrome project, and supports Windows, Linux and Mac platforms. Besides providing a C/C + + interface, there are also port-fixes for other languages.
In a preferred real-time example, a class for implementing a rendering process callback is defined, such as class a, which inherits from a base class in Xilium CefGlue, and then a WebKit object is initialized; then based on the object memory of the embedded framework Xilium CefGlue, binding and registering object information of data operation, then defining a class for storing information such as object, object property, object method and the like of the operation, accessing the object information by obtaining, such as Get, and setting, such as Set, and defining an operation class, such as ClassB, and converting the data format in the object information into a data format adapted to the webpage; then, based on the converted object information, the most appropriate calling method is automatically selected for calling in a reflection mode, so that manual writing is not needed any more, and full automation is almost realized; the method comprises the steps that a custom-packaged class library is called in an initialization method, a predetermined method is directly accessed to achieve automatic registration of a JS script, automatic response operation is achieved, when data are sent to a webpage such as W through a desktop application program such as APP1, according to object information of registered data operation, ClassB converts a data format in the object information into a data format matched with the webpage based on the converted object information, the JS script calls a response method corresponding to current object information, and an execution result of the response method is fed back to the desktop application program.
In a specific application scenario, a local application program, such as APP2, records data and login states of multi-user login, when a user clicks a login popup login window through a webpage to input a user name and a password and submits login operation, received user information is submitted to a server to verify the data, after the verification is successful, the server returns the data to a webpage, and the webpage sends the data to the local application program APP2 through a custom packaging method to store local user data.
The embodiment of the present invention provides a device for embedding a desktop application into a web page, which can implement the method embodiment provided above, and for specific function implementation, reference is made to the description in the method embodiment, which is not repeated herein.
It should be understood that the specific order or hierarchy of steps in the processes disclosed is an example of exemplary approaches. Based upon design preferences, it is understood that the specific order or hierarchy of steps in the processes may be rearranged without departing from the scope of the present disclosure. The accompanying method claims present elements of the various steps in a sample order, and are not intended to be limited to the specific order or hierarchy presented.
In the foregoing detailed description, various features are grouped together in a single embodiment for the purpose of streamlining the disclosure. This method of disclosure is not to be interpreted as reflecting an intention that the claimed embodiments of the subject matter require more features than are expressly recited in each claim. Rather, as the following claims reflect, invention lies in less than all features of a single disclosed embodiment. Thus, the following claims are hereby expressly incorporated into the detailed description, with each claim standing on its own as a separate preferred embodiment of the invention.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. To those skilled in the art; various modifications to these embodiments will be readily apparent, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the disclosure. Thus, the present disclosure is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.
What has been described above includes examples of one or more embodiments. It is, of course, not possible to describe every conceivable combination of components or methodologies for purposes of describing the aforementioned embodiments, but one of ordinary skill in the art may recognize that many further combinations and permutations of various embodiments are possible. Accordingly, the embodiments described herein are intended to embrace all such alterations, modifications and variations that fall within the scope of the appended claims. Furthermore, to the extent that the term "includes" is used in either the detailed description or the claims, such term is intended to be inclusive in a manner similar to the term "comprising" as "comprising" is interpreted when employed as a transitional word in a claim. Furthermore, any use of the term "or" in the specification of the claims is intended to mean a "non-exclusive or".
Those of skill in the art will further appreciate that the various illustrative logical blocks, units, and steps described in connection with the embodiments disclosed herein may be implemented as electronic hardware, computer software, or combinations of both. To clearly illustrate the interchangeability of hardware and software, various illustrative components, elements, and steps have been described above generally in terms of their functionality. Whether such functionality is implemented as hardware or software depends upon the particular application and design requirements of the overall system. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present embodiments.
The various illustrative logical blocks, or elements, described in connection with the embodiments disclosed herein may be implemented or performed with a general purpose processor, a digital signal processor, an Application Specific Integrated Circuit (ASIC), a field programmable gate array or other programmable logic device, discrete gate or transistor logic, discrete hardware components, or any combination thereof designed to perform the functions described herein. A general-purpose processor may be a microprocessor, but in the alternative, the processor may be any conventional processor, controller, microcontroller, or state machine. A processor may also be implemented as a combination of computing devices, e.g., a digital signal processor and a microprocessor, a plurality of microprocessors, one or more microprocessors in conjunction with a digital signal processor core, or any other similar configuration.
The steps of a method or algorithm described in connection with the embodiments disclosed herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. A software module may be stored in RAM memory, flash memory, ROM memory, EPROM memory, EEPROM memory, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art. For example, a storage medium may be coupled to the processor such the processor can read information from, and write information to, the storage medium. In the alternative, the storage medium may be integral to the processor. The processor and the storage medium may reside in an ASIC, which may be located in a user terminal. In the alternative, the processor and the storage medium may reside in different components in a user terminal.
In one or more exemplary designs, the functions described above in connection with the embodiments of the invention may be implemented in hardware, software, firmware, or any combination of the three. If implemented in software, the functions may be stored on or transmitted over as one or more instructions or code on a computer-readable medium. Computer-readable media includes both computer storage media and communication media that facilitate transfer of a computer program from one place to another. Storage media may be any available media that can be accessed by a general purpose or special purpose computer. For example, such computer-readable media can include, but is not limited to, RAM, ROM, EEPROM, CD-ROM or other optical disk storage, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to carry or store program code in the form of instructions or data structures and which can be read by a general-purpose or special-purpose computer, or a general-purpose or special-purpose processor. Additionally, any connection is properly termed a computer-readable medium, and, thus, is included if the software is transmitted from a website, server, or other remote source via a coaxial cable, fiber optic cable, twisted pair, Digital Subscriber Line (DSL), or wirelessly, e.g., infrared, radio, and microwave. Such discs (disk) and disks (disc) include compact disks, laser disks, optical disks, DVDs, floppy disks and blu-ray disks where disks usually reproduce data magnetically, while disks usually reproduce data optically with lasers. Combinations of the above may also be included in the computer-readable medium.
The above-mentioned embodiments are intended to illustrate the objects, technical solutions and advantages of the present invention in further detail, and it should be understood that the above-mentioned embodiments are merely exemplary embodiments of the present invention, and are not intended to limit the scope of the present invention, and any modifications, equivalent substitutions, 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 (8)

1. A method for embedding a desktop application into a web page, comprising:
binding and registering object information of data operation based on an object memory of the embedded framework;
when detecting that data are sent to a webpage through a desktop application program, converting a data format in object information into a data format matched with the webpage according to the registered object information operated by the data;
calling a response method corresponding to the current object information based on the converted object information, and feeding back an execution result of the response method to the desktop application program;
when detecting that data is sent to a webpage through a desktop application program, converting a data format in object information into a data format adapted to the webpage according to the registered object information operated by the data, including:
when detecting that data are sent to a webpage through a desktop application program, registering corresponding script information in the webpage according to object information of registered data operation;
and correspondingly processing the data sent by the desktop application program in the webpage according to the registered script information.
2. The method of claim 1, prior to the step of binding and registering object information of the data operation in the embedded framework based object store, comprising:
initializing a webpage rendering method;
the data objects of the embedded framework are initialized.
3. The method according to claim 1 or 2, wherein the binding and registering object information of the data operation based on the object storage of the embedded framework comprises:
and managing the access operation of each object based on the object memory of the embedded framework.
4. The method of claim 1, wherein invoking a response method corresponding to the current object information based on the converted object information comprises:
based on the converted object information, calling a response method corresponding to the current object information in a reflection mode; or calling a response method corresponding to the current object information in a delegation mode based on the converted object information.
5. An apparatus for embedding a desktop application into a web page, comprising:
the binding and registering module is used for binding and registering the object information of the data operation based on the object memory of the embedded framework;
the conversion module is used for converting a data format in the object information into a data format matched with the webpage according to the registered object information operated by the data when the data sent to the webpage by the desktop application program is detected;
the feedback module is used for calling a response method corresponding to the current object information based on the converted object information and feeding back an execution result of the response method to the desktop application program;
the conversion module comprises:
the registration unit is used for registering corresponding script information in the webpage according to the registered object information of data operation when detecting that data are sent to the webpage through the desktop application program;
and the processing unit is used for correspondingly processing the data sent by the desktop application program in the webpage according to the registered script information.
6. The apparatus of claim 5, comprising:
the first initialization module is used for initializing a webpage rendering method;
and the second initialization module is used for initializing the data object of the embedded framework.
7. The apparatus of claim 5 or 6, wherein the binding and registration module comprises:
and the management unit is used for managing the access operation of each object based on the object memory of the embedded framework.
8. The apparatus according to claim 5, wherein the feedback module is specifically configured to
Based on the converted object information, calling a response method corresponding to the current object information in a reflection mode; or calling a response method corresponding to the current object information in a delegation mode based on the converted object information.
CN201810817743.6A 2018-07-24 2018-07-24 Method and device for embedding desktop application program into webpage Active CN108897605B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810817743.6A CN108897605B (en) 2018-07-24 2018-07-24 Method and device for embedding desktop application program into webpage

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810817743.6A CN108897605B (en) 2018-07-24 2018-07-24 Method and device for embedding desktop application program into webpage

Publications (2)

Publication Number Publication Date
CN108897605A CN108897605A (en) 2018-11-27
CN108897605B true CN108897605B (en) 2022-03-08

Family

ID=64351506

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810817743.6A Active CN108897605B (en) 2018-07-24 2018-07-24 Method and device for embedding desktop application program into webpage

Country Status (1)

Country Link
CN (1) CN108897605B (en)

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101436148A (en) * 2007-11-14 2009-05-20 华为技术有限公司 Integrated client end and method for performing interaction of desktop application and network WEB application
CN103914284A (en) * 2012-12-31 2014-07-09 北京神州泰岳软件股份有限公司 Method and device for implementing embedded browser webpage in mobile embedded platform
CN104239063A (en) * 2014-09-23 2014-12-24 福建星网视易信息系统有限公司 Web browser and method for calling local application program through web browser
EP3018579A1 (en) * 2014-11-07 2016-05-11 Open Text S.A. Client application with embedded server
CN106445503A (en) * 2016-08-31 2017-02-22 武汉烽火众智数字技术有限责任公司 Desktop application method and system based on embedded browser
CN106897318A (en) * 2015-12-21 2017-06-27 阿里巴巴集团控股有限公司 The methods of exhibiting and device of five application page on mobile terminal device
CN107977245A (en) * 2016-10-21 2018-05-01 浙江银泰电子商务有限公司 A kind of application terminal exchange method and application terminal
CN108021583A (en) * 2016-10-28 2018-05-11 阿里巴巴集团控股有限公司 Page loading method, the processing method and client of page operation instruction

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101378400B (en) * 2007-08-30 2013-01-30 国际商业机器公司 Method, server and system for polymerizing desktop application and Web application
US9400661B2 (en) * 2008-02-29 2016-07-26 Adobe Systems Incorporated Embedded user interface
US8887132B1 (en) * 2010-09-03 2014-11-11 Christopher R. Hunter Application runtime environment and framework
CN105160028B (en) * 2015-09-30 2019-04-19 北京海鑫高科指纹技术有限公司 Web page browsing implementation method and browser realize system

Patent Citations (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101436148A (en) * 2007-11-14 2009-05-20 华为技术有限公司 Integrated client end and method for performing interaction of desktop application and network WEB application
WO2009062414A1 (en) * 2007-11-14 2009-05-22 Huawei Technologies Co., Ltd. Integrate client and method of desktop application communicating with net web application
CN103914284A (en) * 2012-12-31 2014-07-09 北京神州泰岳软件股份有限公司 Method and device for implementing embedded browser webpage in mobile embedded platform
CN104239063A (en) * 2014-09-23 2014-12-24 福建星网视易信息系统有限公司 Web browser and method for calling local application program through web browser
EP3018579A1 (en) * 2014-11-07 2016-05-11 Open Text S.A. Client application with embedded server
CN106897318A (en) * 2015-12-21 2017-06-27 阿里巴巴集团控股有限公司 The methods of exhibiting and device of five application page on mobile terminal device
CN106445503A (en) * 2016-08-31 2017-02-22 武汉烽火众智数字技术有限责任公司 Desktop application method and system based on embedded browser
CN107977245A (en) * 2016-10-21 2018-05-01 浙江银泰电子商务有限公司 A kind of application terminal exchange method and application terminal
CN108021583A (en) * 2016-10-28 2018-05-11 阿里巴巴集团控股有限公司 Page loading method, the processing method and client of page operation instruction

Also Published As

Publication number Publication date
CN108897605A (en) 2018-11-27

Similar Documents

Publication Publication Date Title
WO2019184687A1 (en) Hot update method and device for code, storage medium, processor and terminal
US20150169320A1 (en) Verification of backward compatibility of software components
US10289397B2 (en) Silent installation of software with dependencies
US10831799B2 (en) External action execution with conversational agent
US20200241898A1 (en) Text resources processing in an application
CN106909441B (en) Disk direct I/O access method based on JVM
CN110968305A (en) Applet visualization generation method, device, equipment and storage medium
CN109918060A (en) A kind of switching method and device for realizing multi-tag page under single window
US10514897B1 (en) Systems and methods for integrating modules into a software application
US10255276B2 (en) Automated translation of screen images for software documentation
CN108345458B (en) Calling method and system for static compiling language and scripting language
CN107797996B (en) Entry translation method and device
CN110045952B (en) Code calling method and device
US8191041B2 (en) Javascript pre-processing framework
CN114048415A (en) Form generation method and device, electronic equipment and computer readable storage medium
CN114461223A (en) Code generation method and device and terminal equipment
US11687326B2 (en) Method and apparatus for data interaction
CN108897605B (en) Method and device for embedding desktop application program into webpage
CN111581098B (en) Method, device, server and storage medium for transferring and storing interface data
CN107077365B (en) Selectively loading precompiled headers and/or portions thereof
CN111399842A (en) Code compiling method and device
US10776133B2 (en) Preemptive loading of code dependencies for improved performance
CN116795679A (en) Web application testing method and device, electronic equipment and storage medium
CN114510284A (en) Page loading method and device, electronic equipment and readable storage medium
CN111151008A (en) Game operation data verification method, device, configuration background and 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
GR01 Patent grant
GR01 Patent grant