Exception in thread "main" java.lang.Error: Unresolved compilation problems: The method createTable(Configuration, String, String[]) in the type ImportData_milestone2 is not applicable for the arguments (Configuration, String, String, String) The method createTable(Configuration, String, String[]) in the type ImportData_milestone2 is not applicable for the arguments (Configuration, String, String, String, String) at myHBase.hbaselib.ImportData_milestone2.main(ImportData_milestone2.java:110)
时间: 2024-01-09 22:03:18 浏览: 76
Unresolved dependency: 'com.aspose:aspose:jar:19'
这个错误提示是在Java编译时出现的,意思是`ImportData_milestone2`类中的`createTable()`方法调用参数不匹配。根据错误提示,第一个问题是`createTable(Configuration, String, String[])`方法的参数无法匹配`(Configuration, String, String, String)`,第二个问题是`createTable(Configuration, String, String[])`方法的参数无法匹配`(Configuration, String, String, String, String)`。
你需要检查`ImportData_milestone2`类中的`createTable()`方法,并确保它们的参数类型和数量与调用它们的地方匹配。你可能需要修改方法的参数列表,或者在调用它们的地方传递正确的参数。
阅读全文