ksprojects / zkcopy

ZooKeeper copy utililty
Apache License 2.0
240 stars 96 forks source link

when the node path have & , zkCopy can't read data from zookeeper #21

Open robert-guangzhou opened 3 years ago

robert-guangzhou commented 3 years ago

the issue can resolve by add code: path=path.replaceAll("&", "\&");

in NodeReader.java and destPath=destPath.replaceAll("&", "\&"); in Writer.java