摘要:
如果子窗口设置为 setDefaultCloseOption(Jframe.Exit_ON_CLOSE)的话,关闭子窗口后,父窗口也跟着关闭。想要只关闭子窗口,方法如下: 子窗口设置为setDefaultCloseOption(Jframe.DISPOSE_ON_CLOSE) 阅读全文
摘要:
Object value=""; Integer.parseInt(String.valueOf(value)); 这就是将Object类型转化为int类型,而String.valueOf(value)是将value转化为String类型,然后由Integer.parseInt将String类型转化 阅读全文
摘要:
不要使用(int)来强制转换 应该先生成一个double的外覆型Double,再用Double的intValue()得到int。 例子: double d=6.0; int i=new Double(d).intValue(); 阅读全文
摘要:
javax.swing.table.DefaultTableModel This is an implementation of TableModel that uses a Vector of Vectors to store the cell value objects. 例子: Default 阅读全文
摘要:
jMenu 不添加item 直接自己添加监听 actionPerformed不行mousePressed可以 看下API应该有详细介绍 阅读全文