Zookeeper 编程访问

package com.huawei.cn;

import org.apache.zookeeper.ZooKeeper;
import org.junit.Test;

import java.io.IOException;
import java.util.List;

public class ZookeeperTest {
    @Test
    public void ls() throws Exception {
        ZooKeeper zk=new ZooKeeper("192.168.0.110:2181",5000,null);
        List<String>list = zk.getChildren("/",null);
        for(String tt:list){
            System.out.println(tt);
        }

    }

    /**
     * 递归列出所有子节点的信息
     */
    @Test
    public void lsall() throws Exception {
        ls("/");
    }

    public void ls(String path) throws Exception {
        ZooKeeper zk=new ZooKeeper("192.168.0.110:2181",5000,null);
        List<String>list=zk.getChildren(path,null);
        if(list==null||list.isEmpty()){
            return ;
        }
        if(path.equals("/")){
            path="";
        }
        for(String tt:list){
            String next=path+"/"+tt;
            System.out.println(tt);
            ls(next);
        }

    }

}

有一个报错,估计是访问权限的问题,还是访问到不能访问的东西,后面再看。

org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /solr/configs/managedTemplate/velocity/facet_fields.vm

	at org.apache.zookeeper.KeeperException.create(KeeperException.java:99)
	at org.apache.zookeeper.KeeperException.create(KeeperException.java:51)
	at org.apache.zookeeper.ZooKeeper.getChildren(ZooKeeper.java:1532)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:30)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:40)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:40)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:40)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:40)
	at com.huawei.cn.ZookeeperTest.ls(ZookeeperTest.java:40)
	at com.huawei.cn.ZookeeperTest.lsall(ZookeeperTest.java:25)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:497)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
	at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值