我想将我的数据从 csv 文件导入到 java 中的 hbase。但是我在 Base64 类中找不到 encodeByte 方法。在下面的行中:
Base64.encodeByte(actualSeparator.getBytes())
我得到一个错误。
你能告诉我需要导入哪个类或者我需要在我的库中插入哪个文件 jar 吗?
If you can use Apache-Commons Base64 Codec is really easy:
import org.apache.commons.codec.binary.Base64;
and using this line of code:
byte[] encoded = Base64.encodeBase64(actualSeparator.getBytes());
Main page of project and download page