我正在检查以下条件并显示对话框
if(query.contains(tab))
{
JOptionPane.showMessageDialog(null,"Owner does not have privileges to access given table");
}
我想在显示对话框并且条件为真时。进一步的执行应该停止在那里。如何做到这一点?
JOptionPane 是否会降低应用程序性能?因为我的应用程序需要花费大量时间来显示对话框。
编辑:
for(int i=0; i<ia.length; i++)
{
tab= ia[i].toString();
if(query.contains(tab))
{
JOptionPane.showMessageDialog(null,"Owner does not have privileges to access given table");
break;
}
}
//rest code