Tushar Chutani
Tushar Chutani

Reputation: 1560

Web server java library?

I m looking for a simple java library which would let me make a java web server and share some files. Is there any libraries which would let me achieve this?

Upvotes: 0

Views: 471

Answers (3)

There is a host of different web servers which all can do what you want (provided it just is allowing users to download files).

A good, small library with a simple-to-get-started method, is the Acme Laboratory Java pages.

http://acme.com/java/software/Acme.Serve.Serve.html

serves the current directory without any fuzz.

Upvotes: 1

AlexR
AlexR

Reputation: 115328

Use jetty - the lightweight web server and servlet container.

Upvotes: 3

Suraj Chandran
Suraj Chandran

Reputation: 24791

You can directly use an Apache WebServer setup for this.

Upvotes: 0

Related Questions