我正在使用下面的代码来显示对话框:
if(query.contains(tab)) {
JOptionPane.showMessageDialog(null,"Owner does not have privileges to access given table");
}
但我想JOptionPane
不会在struts中工作。那么如何在struts中显示对话框呢?
我可以JOptionPane
在struts中使用吗?
我正在使用下面的代码来显示对话框:
if(query.contains(tab)) {
JOptionPane.showMessageDialog(null,"Owner does not have privileges to access given table");
}
但我想JOptionPane
不会在struts中工作。那么如何在struts中显示对话框呢?
我可以JOptionPane
在struts中使用吗?
当然你不能JOptionPane
在 Struts 中使用。Struts 在服务器端运行。JOptionPane
将在 Web 服务器屏幕上显示 Swing 对话框,而不是在客户端的浏览器中。
要在浏览器中显示对话框,您需要 JavaScript。例如,您可以使用jQuery-UI。