不推荐使用HTable(config,tablename)类型。有什么用呢?

我可以用什么代替HTable(config,tablename)

不建议使用此方法。在每个示例中,我都可以发现他们使用了此构造器或另一个不推荐使用的构造器。

回答:

手动构建对象。请改为实例化一个。 ConnectionTable*

,使用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();

}

以上是 不推荐使用HTable(config,tablename)类型。有什么用呢? 的全部内容, 来源链接: utcz.com/qa/402309.html

回到顶部