如何安装Commons Codec?

发布于 2024-12-10 01:38:14 字数 134 浏览 0 评论 0原文

如何安装 commons 编解码器?我已经下载了,但我在网上搜索后找不到答案。我想使用 Base64 编码器和解码器。

还有一个问题,如果我的代码使用此编解码器,尝试使用我的程序的其他用户是否也需要它?或者只是编译?

谢谢

How can I install the commons codec? I've downloaded but I've searched online and couldn't find an answer to this. I want to use the Base64 encoder and decoder.

Also 1 more question, if my code uses this codec, will other users that try to use my program require it too? or is it just compiling?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月染过的梦 2024-12-17 01:38:14

对于你的第二个问题,如果其他人使用你的代码,并且如果你的代码内部使用 Base64,那么仅仅编译是没有帮助的,你必须在你的代码中提供 Base64 jar,因为你在运行时的代码依赖于 Base64代码。

对于你的第一个问题,在项目本身中,你可以添加 Base64 jar,然后尝试以独立模式执行该 jar。有一种方法可以将 jar 添加到 jar 内,然后您的代码将在内部使用该 jar。

For your second question, if some one else uses your code, and if your code internally uses the Base64, then just compiling won't help, you will have to supply the Base64 jar with your code as you code at runtime depends on the Base64 code.

To your first question, in the project itself you can add the Base64 jar, and then try to execute the jar in a standalone mode. There is a way to add the jar inside the jar, and then your code will use that jar internally.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文