1

我想用 JavaFx 制作的 GUI 在 scala 中实现文件浏览器。因此我使用 TreeView 来表示树。

每当我单击一个项目(性能原因)时,此代码仅从树中读取一个级别,但树视图不显示缩进并且非空文件夹处的箭头丢失。

如果我读出 2 个级别(以检查文件夹是否为空),它只显示没有目录的文件。

你们中的任何人都知道这是如何工作的吗?

提前致谢!

  val rootPath: String = "C:/Test/"
  val path1 = Paths.get(rootPath)
  val opts = util.EnumSet.of(FileVisitOption.FOLLOW_LINKS)

  def treeRecursive(path: Path): Unit = {

      Files.walkFileTree(path,opts, 1, new SimpleFileVisitor[Path]() {

        override def visitFile(path: Path, attrs: BasicFileAttributes): FileVisitResult = {


          if (attrs.isDirectory()){
            val subdir = new TreeItem[String](path.toString, new ImageView(pictureFolder))
            root.getChildren.add(subdir)
          }
          else{
            val file = new TreeItem[String](path.toString, new ImageView(pictureFile))
            root.getChildren.add(file)
          }

          FileVisitResult.CONTINUE
        }

        override def visitFileFailed(path: Path, exc: IOException): FileVisitResult = {
          println(path + " failed")
          FileVisitResult.CONTINUE;
        }

      } )
    }


  val mouseEvent: EventHandler[_ >: MouseEvent] = new EventHandler[MouseEvent] {
    override def handle(event: MouseEvent): Unit = {
      event.getSource match {
        case clicked: TreeView[String] => treeRecursive(Paths.get(clicked.getSelectionModel.getSelectedItem.getValue))
      }
    }
  }

这是我当前树视图的屏幕截图! 截屏

它应该看起来像这个屏幕 截图 Screenshot2

4

0 回答 0