//读取properties文件
//读取properties中的hello.world
String value=hbaseMeta.getValue("hello.world");
//输出值
System.out.println(value);
//配置相对路径
Metadata hbaseMeta = new Metadata("/config/hbase.properties");//读取properties中的hello.world
String value=hbaseMeta.getValue("hello.world");
//输出值
System.out.println(value);