VB和Java桌面应用程序通信

发布于 2024-11-17 20:14:46 字数 149 浏览 4 评论 0原文

有两个客户端应用程序在 Win XP 中运行,其中一个使用 VB 5 构建,另一个使用 wint Java 1.4 构建。您建议使用什么机制在这些应用程序之间交换数据?

数据块较小(最大1k),并且操作是同步的; VB 应用程序触发“请求”,Java 应用程序响应它。

there are two client applications running in Win XP, one of them built with VB 5 and the other wint Java 1.4. What mechanism do you recommend to exchange data between these apps ?

The chunks of data are small (max 1k), and the operation is synchronous; the VB app triggers the "request" and the Java one responds to it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

む无字情书 2024-11-24 20:14:46

HTTP 是两者通用的协议。也许他们可以通过调用某种网络服务来传递消息。您还可以将它们耦合到数据库中:从一个应用程序插入信息,在另一个应用程序中选择信息。您只需要小心锁定和隔离即可。

HTTP is a protocol that's common to both. Perhaps they can pass messages by calling web services of some kind. You can also couple them in a database: INSERT information from one application, SELECT it in the other. You just have to be careful about locking and isolation.

小…楫夜泊 2024-11-24 20:14:46

我可能会在 Java 应用程序中创建一个简单的 TCP/IP 服务器,并让 VB 应用程序连接到它并在需要时发送数据。

在 VB6 中,您可以使用 WinSock 控件,我认为这也适用于 VB5。

I'd probably go for creating a simple TCP/IP server in the Java app and have the VB app connect to it and send the data when needed.

In VB6 you can use the WinSock control and I assume that this would be available for VB5 as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文