如何使用 Java 桌面应用程序访问共享托管数据库
我正在寻找我的一个问题的解决方案。我开发了一个Java桌面应用程序。我在共享 php 托管服务器中有一个数据库。有没有可能的方法将共享托管数据库与我的 Java 桌面应用程序连接起来。我如何与共享数据库服务器执行定时数据库同步
提前感谢
Mujahid
I was looking for a solution for one of my questions. I have developed a Java desktop application. I have a database in a shared php hosting server. Is there any possible way to connect the shared hosting database with my Java desktop application. And how can I perform timed database synchronization with the shared database server
Thanks in advance
Mujahid
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果共享托管提供商允许 SSH 文件传输,请检查是否可以创建到数据库服务器的隧道,并将桌面应用程序配置为使用该隧道进行连接。
If the shared hosting provider allows SSH file transfers, check to see if you can create a tunnel to the database server, and configure your desktop application to use that tunnel to connect.
可能不会,出于安全原因,%99,99 的共享托管服务器不允许这样做。
但是,您可以编写一个与服务器端的数据库交互的网关 php 字符串。然后,您可以从您的 Java 应用程序连接到此 php 脚本:
您的 Java 应用程序
<->php 脚本
<->数据库Probably not, for security reasons %99,99 of shared hosting servers would not allow that.
However you can programm a gateway php string that interacts with db on the server side. Then you can connect to this php script from your java app:
your java app
<->php script
<->db