Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何方法可以找出名称方法出现的异常类型。例如,我使用 Hbase 表的“删除”功能删除了一些列,我想知道会出现哪些异常?
据我了解,如果您使用 Eclipse,请选择您的功能(例如删除),按 F2 并查看当前方法的文档。
失败时应该提供异常类型。
此外,您可以使用 try/catch 选项(有时 Eclipse 会创建正确的异常类型)
右键单击方法-> 环绕
看一下api
http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/HTable.html#delete(org.apache.hadoop.hbase.client.Delete )
删除抛出 IOException