我正在编写以下代码:
BaseEncoding.base64().encode(byteArrayEntity.getBytes())
但Intellij(社区2018.2)正在显示以下警告:
'BaseEncoding' is marked unstable
Inspection info: Reports unstable API (elements annotated with one of annotations from list) usages.
我不知道这是否应该让我担心。有人能解释一下吗
我感谢关注......
在Google GitHub API中,BaseEncoding被标记为“Beta”,因此它可能完全正常运行。但是,如果你在哪里我仍然使用java.util.Base64,因为我从未遇到任何问题。
这应该提供相同的结果:
java.util.Base64.getEncoder().encode(byteArrayEntity.getBytes());