如何下载com.sun.net.httpserver包?
我不熟悉在哪里可以获得 com.sun.net.httpserver 包?我喜欢在 Android 中使用这个包。
谢谢!
I'm not familiar with where I can get the package com.sun.net.httpserver? I like to use this package in Android.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以从以下位置下载:
它曾经可以从 Sun for Java 5 获得,但他们似乎已经取消了链接。不过已经存档了。不知道 Android 上是否可以使用,请注意。
旧的、损坏的链接:
You can download it from:
It used to be available from Sun for Java 5 but they seem to have pulled the link. It has been archived though. Don't know if it works on Android mind you.
Old, broken links:
它是 Java SE 6 的一部分。它没有单独发布,也没有包含在 Android 中。我建议寻找另一种轻量级的 HTTP 服务器 Java 实现,例如 i-Jetty。
It's part of Java SE 6. It's not published separately and also not included in Android. I'd suggest to look for another lightweight Java implementation of a HTTP server, like i-Jetty.
Android Studio 使用
jcenter
作为默认存储库源。更方便的方法是将依赖项添加到 gralde 配置中。该库可以在
jcenter
中找到,请参阅 这里。因此,只需将其添加到您的项目的依赖项中即可。
Android studio use
jcenter
as the default repository source. The more convenient way is adding the dependency to gralde configuration.The library can be found in
jcenter
, see here.So just add it to your project's dependencies.