我想将数据从csv文件导入到java中的hbase。但我在Base64类中找不到encodeByte方法。在以下行中:
Base64.encodeByte(actualSeparator.getBytes())
我收到错误。
你能告诉我需要导入哪个类或者我需要在我的库中插入哪个文件jar?
答案 0 :(得分:0)
如果您可以使用Apache-Commons Base64 Codec非常简单:
import org.apache.commons.codec.binary.Base64;
并使用以下代码行:
byte [] encoded = Base64.encodeBase64(actualSeparator.getBytes());