2 Kasım 2018 Cuma

Swing TreePath Sınıfı

Giriş
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
constructor
tree.getPathForRow(row) metod ile yaratılır.

getLastPathComponent metodu
Örnek ver

Hiç yorum yok:

Yorum Gönder