当前位置: 技术问答>java相关
关于树的焦点
来源: 互联网 发布时间:2015-08-23
本文导语: 有两个面板,一个显示树目录,另一个显示数据,当我updata数据后,本来选中的树节点就失去了焦点,我想让某特定的节点选中,一边数据面板显示数据,什么办? 各位大侠,怎样使树的某节点处于选中的状态(就...
有两个面板,一个显示树目录,另一个显示数据,当我updata数据后,本来选中的树节点就失去了焦点,我想让某特定的节点选中,一边数据面板显示数据,什么办?
各位大侠,怎样使树的某节点处于选中的状态(就像JList的list.setSelectedIndex(0)那样)
各位大侠,怎样使树的某节点处于选中的状态(就像JList的list.setSelectedIndex(0)那样)
|
too easy look down
//添加树选取事件
tree.addTreeSelectionListener(new TreeSelectionListener()
{
public void valueChanged(TreeSelectionEvent event)
{
//得到选中的树节点
TreePath path = tree.getSelectionPath();
if (path == null) return;
DefaultMutableTreeNode thisnode = (DefaultMutableTreeNode) path.getLastPathComponent();
//变量定义
String sql="select EMP_ID,EMP_REALNAME from employee where emp_onjob='1' and emp_dept_id='" ;
String deptid=getDeptId(thisnode.toString());
String sqlcondition=deptid+"'";
Vector userVector=new Vector();
int size=0;
String temp="";
int rowcount=customModel.getRowCount();
//先移除表中的所有数据,再添加入新的数据
for(int i=rowcount;i>0;i--)
{
try{
customModel.removeRow(i-1);
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
}
//得到人员信息
try
{
userVector=client.getUserDetail(sql,sqlcondition);
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
size=userVector.size();
for(int j=0;j
//添加树选取事件
tree.addTreeSelectionListener(new TreeSelectionListener()
{
public void valueChanged(TreeSelectionEvent event)
{
//得到选中的树节点
TreePath path = tree.getSelectionPath();
if (path == null) return;
DefaultMutableTreeNode thisnode = (DefaultMutableTreeNode) path.getLastPathComponent();
//变量定义
String sql="select EMP_ID,EMP_REALNAME from employee where emp_onjob='1' and emp_dept_id='" ;
String deptid=getDeptId(thisnode.toString());
String sqlcondition=deptid+"'";
Vector userVector=new Vector();
int size=0;
String temp="";
int rowcount=customModel.getRowCount();
//先移除表中的所有数据,再添加入新的数据
for(int i=rowcount;i>0;i--)
{
try{
customModel.removeRow(i-1);
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
}
//得到人员信息
try
{
userVector=client.getUserDetail(sql,sqlcondition);
}
catch(Exception ex)
{
System.out.println(ex.toString());
}
size=userVector.size();
for(int j=0;j
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!