为什么在Intellij中BaseEncoding被标记为不稳定?

问题描述 投票:3回答:1

我正在编写以下代码:

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.

我不知道这是否应该让我担心。有人能解释一下吗

我感谢关注......

java intellij-idea
1个回答
3
投票

在Google GitHub API中,BaseEncoding被标记为“Beta”,因此它可能完全正常运行。但是,如果你在哪里我仍然使用java.util.Base64,因为我从未遇到任何问题。

这应该提供相同的结果:

java.util.Base64.getEncoder().encode(byteArrayEntity.getBytes());
© www.soinside.com 2019 - 2024. All rights reserved.