Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to save images directly from the webcam of my system to a web server in Java? Maybe it can directly passed to an URL address and can be GET at the server or anything else.

share|improve this question
Do you want to save images (as you're saying in the body of your question) or audio file (as you're mentioning in the subject)? – Alex Jan 3 '10 at 19:24

2 Answers

up vote 1 down vote accepted

You can use the Java Media Framework (JMF) to capture images from a webcam using Java. The JMF enables you to capture the current shot into an java.awt.Image object (part of the Java SE's built-in Java 2D API). Finally you can use the Java 2D API to write the captured shot in under each the JPEG format to an OutputStream. This can be the URLConnection#getOutputStream() of the URL of the web server.

You really shouldn't use GET for this. This way you're forced to send the image data encoded as a query string, which in turn has limitations in length. You don't want to be dependent on that. Better use POST instead. You need to do urlConnection.setDoOutput(true) to trigger POST. Alternatively you can use the Apache Commons HttpClient for to send it as a multipart/form-data request according the standards.

Assuming that you're using a Servlet on the server side, you just need to implement doPost() method accordingly to extract the image from the HttpServletRequest#getInputStream(). Alternatively, if you're using the HttpClient to send a multipart/form-data request, you can use the Apache Commons FileUpload for this.

Good luck.

share|improve this answer

depends on your webcam /Webcam software . Lots of webcams come with software which stores the images in a directory. Configure the software and your web server in such a way that the images or streams are accessible from your webserver. That's all.

This way you can easily check on your web page for new webcam images and display them.

If your webserver is remote, do the same trick by installing a small server or java tool which checks for new images in the configured directory. If it finds some, write some code which posts those images as upload to your remote web server.

Hope that helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.