在同一系统上的两个应用程序之间传递数据的首选方式是什么?

What is the preferred way of passing data between two applications on the same system?(在同一系统上的两个应用程序之间传递数据的首选方式是什么?)
本文介绍了在同一系统上的两个应用程序之间传递数据的首选方式是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个应用程序 (A) 需要启动另一个应用程序 (B).我需要在应用程序之间传递数据.我可以想到两种方法.首先是打开一个套接字.第二种是通过dll共享数据.

I have an application (A) that needs to launch another application (B). I need to pass data between the applications. I can think of two approaches. The first is to open a socket. The second is to share data via a dll.

打开套接字方法很简单.

The opening socket approach is straight forward.

dll 方法我有一些问题吗?我可以将插件dll加载到B中.我想创建一个A可以用来将数据传递给B的dll.加载dll时,是否只加载了一个dll实例?如果是这样,这是否意味着可以在加载 dll 的应用程序之间共享数据?

The dll approach I have some questions? I can load plug-in dlls into B. I want to create a dll that A can use to pass data to B. When loading dlls, is only one instance of the dll loaded? If so, does this mean that data can be shared between applications that load the dll?

什么是更好的选择?

还有其他方法可以做到这一点吗?

Are there other ways of doing this?

推荐答案

您无法通过 DLL 有效地共享数据.其他方式:

You can't effectively share data via a DLL. Other ways:

  • 磁盘文件
  • 管道
  • 共享内存
  • 消息
  • RPC
  • CORBA
  • COM

这篇关于在同一系统上的两个应用程序之间传递数据的首选方式是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)