使用函数在 SAP 树中查找项目
当你在 Java 中使用字符串“1\1”时,它将提供有效的路径并返回正确的键。你需要以下代码
SapTree tree = ...; // initialize somewhere String parentKey = tree.findNodeKeyByPath("1"); tree.expandNode(parentKey); String key = tree.findNodeKeyByPath("1\1");
广告
当你在 Java 中使用字符串“1\1”时,它将提供有效的路径并返回正确的键。你需要以下代码
SapTree tree = ...; // initialize somewhere String parentKey = tree.findNodeKeyByPath("1"); tree.expandNode(parentKey); String key = tree.findNodeKeyByPath("1\1");