Java WebDAV 客户端库

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/672678/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-11 17:42:18  来源:igfitidea点击:

Java WebDAV client side library

javaclient-sidewebdav

提问by Darius Kucinskas

What Java WebDAV client side library could you recommend?

您可以推荐什么 Java WebDAV 客户端库?

采纳答案by Julian Reschke

Have you looked at Hymanrabbit's?

你看过Hymanrabbit的吗?

回答by alexmeia

I used the client library provided by the Jakarta Slideproject for a software that I developed about 2 years ago, and it worked fine. Now, visiting the site, I see that the project is no longer active for lack of developers. But the client library should still be a good choice for you. Anyway, I don't see many alternatives out there.

我使用了Jakarta Slide项目提供的客户端库,用于我大约 2 年前开发的软件,并且运行良好。现在,访问该站点,我发现该项目由于缺乏开发人员而不再活跃。但是客户端库对您来说仍然是一个不错的选择。无论如何,我没有看到很多替代品。

回答by Jon Stevens

I've recently created one that is quite easy to use:

我最近创建了一个非常易于使用的:

https://github.com/lookfirst/sardine

https://github.com/lookfirst/sardine

回答by Jon Stevens

Try to esteem about them here: http://www.webdavsystem.com/javaserver

试着在这里尊重他们:http: //www.webdavsystem.com/javaserver

回答by Brad at Kademi

OK I'm a bit late, but you really should check out the milton webdav serverproject. Its open source (apache2), mature and is actively maintained.

好吧,我来晚了,但您确实应该查看milton webdav 服务器项目。其开源(apache2)、成熟并得到积极维护。

Its designed to allow any backend implementation to be hooked up to webdav, and many users have reported implementing it in under 4 hours for existing applications.

它旨在允许任何后端实现连接到 webdav,并且许多用户报告说在 4 小时内为现有应用程序实现了它。

It supports all the usual webdav stuff like locking, custom properties, digest/basic authentication, etc. It also supports caldav and integrated with apache FTP so you get 2 protocols for the price of one!

它支持所有常见的 webdav 内容,如锁定、自定义属性、摘要/基本身份验证等。它还支持 caldav 并与 apache FTP 集成,因此您以一个的价格获得 2 个协议!

Milton ships with a servlet and a spring controller, and it can run independently of a web container.

Milton 附带了一个 servlet 和一个 spring 控制器,它可以独立于 Web 容器运行。

Milton also has a nice little webdav client library, which is ideal for desktop apps due to its observer support.

Milton 还有一个不错的小型 webdav 客户端库,由于它的观察者支持,它非常​​适合桌面应用程序。

回答by skay