我可以用什么代替HTable(config,tablename)?
此方法已弃用.在每个例子中,我可以发现他们使用这个或者另一个也不推荐使用的Constuctor.
解决方法
手动构建HTable对象已被弃用.请使用连接来实例化一个表.
从连接中,使用Connection.getTable(TableName)检索表实现
例:
Connection connection = ConnectionFactory.createConnection(config); Table table = connection.getTable(TableName.valueOf("table1")); try { // Use the table as needed,for a single operation and a single thread } finally { table.close(); connection.close(); }