import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.ZooDefs;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.data.ACL;
import org.apache.zookeeper.data.Stat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
public class ZooKeeperDemo {
// 客户端去请求链接的时候的服务器链接地址信息
private static String connectString = "hadoop0:2181,hadoop1:2181,hadoop2:2181";
// 客户端去请求链接的超时时长
private static int sessionTimeout = 4000;
// 节点名称,统一命名
private static String znode = "/zk";
public static void main(String[] args) throws Exception {
// 拿 ZooKeeper 链接
ZooKeeper zk = new ZooKeeper(connectString, sessionTimeout, null);
System.out.println("==== " + zk + "====");
// 创建 znode //创建的时候,这个节点不能存在,存在会报错。
// String createdNode = zk.create(znode, "hello".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
// System.out.println(createdNode+"节点创建成功");
// 查看节点
// byte[] data = zk.getData(znode, null, null);
// //打印出来了hello节点了。
// System.out.println(new String(data));
// 修改节点数据 为hello2
// Stat setData = zk.setData(znode, "hello2".getBytes(), -1);
// System.out.println(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date(setData.getMtime())));
// byte[] data1 = zk.getData(znode, null, null);
// System.out.println(new String(data1));
// 判断节点是否存在
// Stat exists = zk.exists(znode, null);
// System.out.println(null != exists?true:false);
// 获取子节点
// List<String> children = zk.getChildren("/", null);
// for(String child: children){
// System.out.println(child);
// }
// 删除节点
// zk.delete(znode, -1);
// Stat exists1 = zk.exists(znode, null);
// System.out.println(null == exists1?"删除成功":"删除失败");
zk.close();
}
}
|