Giriş
Kök düğümden kendi düğümüme kadar olan yolu belirtir.
constructor
Şöyle yaparız.
tree.getPathForRow(row) metod ile yaratılır.
getLastPathComponent metodu
Örnek ver
Kök düğümden kendi düğümüme kadar olan yolu belirtir.
constructor
Şöyle yaparız.
TreePath tp = new TreePath(new String[] {"tmp", "foo", "bar"});
String path = tp.toString().replaceAll("\\]| |\\[|", "").replaceAll(",", File.separator);
File f = new File(path);
// path is now tmp\foo\bar on Windows and tmp/foo/bar on unix
constructortree.getPathForRow(row) metod ile yaratılır.
getLastPathComponent metodu
Örnek ver
Hiç yorum yok:
Yorum Gönder