我的表有 4 列,我只希望允许单击第 1 列。此外,此代码还允许使用鼠标左键,我只想要右键。
private void jTable1MouseClicked(java.awt.event.MouseEvent evt) {
// TODO add your handling code here:
int iCol = jTable1.getSelectedColumn();
if(iCol == 1 && evt.getModifiers() == InputEvent.BUTTON3_MASK)
{
if(evt.getClickCount() == 2)
{
int iRow = jTable1.getSelectedRow();
File iFile = new File(jTable1.getValueAt(iRow, iCol).toString());
String iPath = iFile.getAbsolutePath();
File iDir = new File(iPath.substring(0, iPath.lastIndexOf(File.separator)));
if(Desktop.isDesktopSupported()) {
try {
Desktop.getDesktop().open(iDir);
} catch (IOException ex) {
Logger.getLogger(NewJFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
}
}
如果这个问题变成了 2,我很抱歉。