6.2 判断表是否存在
/**
* 判断指定的表是否存在
*
* @param tableName
* @return
* @throws IOException
*/
private static boolean isTableExists(String tableName) throws IOException {
// 创建一个连接对象
Connection conn = ConnectionFactory.createConnection(conf);
// 通过链接对象获取一个 Admin 对象
Admin admin = conn.getAdmin();
boolean isExists = admin.tableExists(TableName.valueOf(tableName));
admin.close();
conn.close();
return isExists;
}