MYSQL& Java小程序
我目前正在将 java 桌面应用程序更改为 java applet。 一切工作正常,但是一旦小程序尝试进行 mysql 数据库调用,它就无法工作。 桌面应用程序中的代码很好,但是一旦从应用程序调用它就不起作用。
是否需要对代码进行任何更改,因为它是从 applet 而不是使用 JDBC 的桌面应用程序调用的?
谢谢
~凯尔·G
I am currently changing a java desktop application over to a java applet. Everything is working fine, but as soon as the applet attempts to make a mysql database call, it does not work. The code in the desktop application is fine, but as soon as its called from the application its not working.
Do any changes need to be made to the code because it is being called from an applet rather then a desktop application using JDBC?
Thanks
~ Kyle G
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我怀疑您可能正在尝试与除为您的小程序提供服务的服务器之外的服务器通信? 请参阅此了解小程序安全限制。
I suspect you're probably trying to talk to a server other than the one serving your applet ? See this for applet security restrictions.
小程序中的 JDBC 无法连接到其他服务器端口:安全限制,例如它们无法读取桌面上的文件
The JDBC in the applet can not connect to the other server port : security restrictions like they can not read file on your desktop