简体   繁体   中英

hbase how to scan with the key contains '\1'

my rowkey is like u\\x01-1\\x012014-10-13 11:19:19\\x01984624111 the \\x01 means \\1 .

I tried \\x01 and \\1 ,but it not works.how can i scan start with " u\\x01-1 "? is it the same problem in java program?

try this :

String str="u\\x01-1\\x012014-10-13 11:19:19\\x01984624111";
        String []data=str.split("\\\\x01");
        for (String string : data) {
            System.out.println(string);
        }

output :

u
-1
2014-10-13 11:19:19
984624111

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM