Я думаю, вы могли бы использовать функцию setSelectedRow
[1] .
РЕДАКТИРОВАТЬ: Добавлен эскиз для решения
Вам необходимо иметь tree model
, который будет считывать файлы из файловой системы (оригинал источник ):
import java.io.File;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.Vector;
import javax.swing.event.TreeModelEvent;
import javax.swing.event.TreeModelListener;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeModel;
import javax.swing.tree.TreePath;
class FileSystemModel implements TreeModel {
private File root;
private Vector listeners = new Vector();
public FileSystemModel(File rootDirectory) {
root = rootDirectory;
}
public Object getRoot() {
return root;
}
public Object getChild(Object parent, int index) {
File directory = (File) parent;
String[] children = directory.list();
return new File(directory, children[index]);
}
public int getChildCount(Object parent) {
File file = (File) parent;
if (file.isDirectory()) {
String[] fileList = file.list();
if (fileList != null)
return file.list().length;
}
return 0;
}
public boolean isLeaf(Object node) {
File file = (File) node;
return file.isFile();
}
public int getIndexOfChild(Object parent, Object child) {
File directory = (File) parent;
File file = (File) child;
String[] children = directory.list();
for (int i = 0; i < children.length; i++) {
if (file.getName().equals(children[i])) {
return i;
}
}
return -1;
}
public void valueForPathChanged(TreePath path, Object value) {
File oldFile = (File) path.getLastPathComponent();
String fileParentPath = oldFile.getParent();
String newFileName = (String) value;
File targetFile = new File(fileParentPath, newFileName);
oldFile.renameTo(targetFile);
File parent = new File(fileParentPath);
int[] changedChildrenIndices = { getIndexOfChild(parent, targetFile) };
Object[] changedChildren = { targetFile };
fireTreeNodesChanged(path.getParentPath(), changedChildrenIndices, changedChildren);
}
private void fireTreeNodesChanged(TreePath parentPath, int[] indices, Object[] children) {
TreeModelEvent event = new TreeModelEvent(this, parentPath, indices, children);
Iterator iterator = listeners.iterator();
TreeModelListener listener = null;
while (iterator.hasNext()) {
listener = (TreeModelListener) iterator.next();
listener.treeNodesChanged(event);
}
}
public void addTreeModelListener(TreeModelListener listener) {
listeners.add(listener);
}
public void removeTreeModelListener(TreeModelListener listener) {
listeners.remove(listener);
}
}
Тогда вы создадите прослушиватель кнопок для создания нового файла:
private void myButtonActionPerformed(java.awt.event.ActionEvent evt) {
File f = new File(MY_DIR + "/file" + new Random().nextInt());
try {
f.createNewFile();
FileSystemModel model = new FileSystemModel(new File(MY_DIR));
tree.setModel(model);
File root = (File) tree.getModel().getRoot();
TreePath path = getPathFor(model, root, f);
tree.expandPath(path);
tree.setSelectionPath(path);
}
catch (IOException e)
{
}
}
Наконец, вы вернете TreePath
для вновь созданного файла:
private TreePath getPathFor(FileSystemModel model, File root, File searched)
{
TreePath path = getPath(model, null, root, searched);
return path;
}
private TreePath getPath(FileSystemModel model, TreePath path, File parent, File searched)
{
if (path == null)
{
path = new TreePath(parent);
}
else if (parent.isDirectory())
{
path = path.pathByAddingChild(parent);
}
if (parent.getAbsolutePath().equals(searched.getAbsolutePath()))
{
return path.pathByAddingChild(parent);
}
for (int i = 0; i < model.getChildCount(parent); i++)
{
File child = ((File)model.getChild(parent, i)).getAbsoluteFile();
TreePath found = getPath(model, path, child, searched);
if (found != null)
{
return found;
}
}
return null;
}
Это всего лишь демонстрация того, как вы могли бы это сделать, хотя и крайне неэффективно, поскольку каждый раз воссоздает модель. Я уверен, что вы можете найти лучшее решение.