如何下载com.sun.net.httpserver包?

发布于 2024-10-08 12:47:07 字数 76 浏览 6 评论 0原文

我不熟悉在哪里可以获得 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 技术交流群。

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

发布评论

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

评论(3

ゞ花落谁相伴 2024-10-15 12:47:07

它是 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.

呆° 2024-10-15 12:47:07

Android Studio 使用jcenter 作为默认存储库源。更方便的方法是将依赖项添加到 gralde 配置中。

该库可以在 jcenter 中找到,请参阅 这里

因此,只需将其添加到您的项目的依赖项中即可。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // ...
    compile 'com.sun.net.httpserver:http:20070405'
    // ...
}

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.

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    // ...
    compile 'com.sun.net.httpserver:http:20070405'
    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文