Accueil > > > WEBCAM HTTP SERVEUR LIVE SANS JMF
WEBCAM HTTP SERVEUR LIVE SANS JMF
Information sur la source
Description
Serveur HTTP pour window capturant à interval régulier les frames provenant d'une webcam via la librairie webcamlib. Pour accéder à la page web votre webcam il vous suffit de double cliquer sur le jar et de taper dans votre navigateur "http://localhost/". La page index.html permet de recharger à interval régulier la source de l'image(/webcam) en javascript ( testé sous IE/Firefox/Opéra). Si l'url de la ressource demandée est "/webcam" le serveur retourne une image au format jpeg, sinon recherche des fichiers dans le répertoire "public_html". NB: Pour accéder à la webcam depuis internet il vous suffit de remplacer localhost par l'adresse IP du serveur à condition que vous ayez bien redirigé le port 80 vers votre serveur sur votre box adsl. Have fun, Pierrick
Source
- /**
- * HTTP Webcam Server Version 1.0
- * (c) 2008 Pierrick HYMBERT <pierrick.hymbert@gmail.com>
- * This library is "PROVIDED AS IS" without guaranty of any kinds.
- * Freely distribuable under the terms of an MIT-style license.
- * Visit www.hypik.fr
- */
- package org.hypik.webcamlib.test.server;
-
- import java.awt.image.BufferedImage;
- import java.awt.image.ColorModel;
- import java.awt.image.DirectColorModel;
- import java.awt.image.WritableRaster;
- import java.io.ByteArrayOutputStream;
-
- import org.apache.log4j.Logger;
- import org.hypik.webcamlib.codecs.Codec;
- import org.hypik.webcamlib.codecs.Codecs;
- import org.hypik.webcamlib.compressor.CompressionException;
- import org.hypik.webcamlib.compressor.DecompressVideo;
- import org.hypik.webcamlib.compressor.jna.ICM;
- import org.hypik.webcamlib.device.Device;
- import org.hypik.webcamlib.device.listener.DeviceErrorListener;
- import org.hypik.webcamlib.device.listener.DeviceFrameListener;
- import org.hypik.webcamlib.device.listener.DeviceStatusListener;
- import org.hypik.webcamlib.jna.User32.BitmapInfoHeader;
- import org.hypik.webcamlib.jna.User32.VideoHDR;
-
- import com.sun.image.codec.jpeg.JPEGCodec;
- import com.sun.image.codec.jpeg.JPEGEncodeParam;
- import com.sun.image.codec.jpeg.JPEGImageEncoder;
- import com.sun.jna.Memory;
- /**
- * This class manage the webcam capture in a thread.
- * After configure decompression video driver and webcam device.
- * Instance can grab frame every rate seconds and decompress it.
- * Frame data can be get back as RGB or Jpeg formats.
- * @author Pierrick Hymbert <a href="mailto:pierrick.hymbert@gmail.com">Contact</a>
- *
- */
- public class WebcamCapture extends Thread {
- /**
- * The class logger.
- */
- private Logger logger = Logger.getLogger(WebcamCapture.class);
- /**
- * The webcam device.
- */
- private Device device;
- /**
- * Time between each frame.
- */
- private int rate;
- /**
- * Indicates if we must continue capturing frame.
- */
- private boolean capture = false;
- /**
- * Indicate that all is configured.
- */
- private boolean available = false;
- /**
- * The video driver decompression.
- */
- private DecompressVideo decompressVideo;
- /**
- * The decompressed data.
- */
- private Memory decompressedData;
- /**
- * The output frame format.
- */
- private BitmapInfoHeader bitmapInfoOutput;
- /**
- * Build a webcam capture.
- * @param device The webcam
- * @param rate The refresh rate.
- */
- public WebcamCapture(Device device, int rate){
- super("WCCapture #" + device.getIndex());
- this.device = device;
- this.rate = rate;
- }
- /**
- * Ask the thread to stop the capture.
- */
- public void stopCapture() {
- this.capture = false;
- }
- /**
- * Start the thread.
- */
- public void startCapture() {
- this.capture = true;
- this.start();
- }
- /**
- * Run webcam capture until stopCapture is called.
- */
- public void run() {
- try{
- // Configure device and decompressor
- logger.debug("Configuring webcam device...");
- configureDevice();
- logger.debug("Configuring frame decompressor...");
- configureDecompressor();
- logger.info("Webcam capture started.");
- }catch( Exception e ){
- logger.error(e);
- capture = false;
- }
- available = true;
- // Caputre loop
- while( capture ){
- // Sometimes call back functions are disabled.
- device.forceCallBacks();
- device.grabFrame();
- try{
- Thread.sleep(rate);
- }catch (Exception e) {
- logger.error(e);
- capture = false;
- }
- }
- logger.debug("Disconnecting webcam device...");
- // Destroy window and disconnect
- device.stop();
- if( decompressVideo != null ){
- try{
- if( decompressVideo.isOpened() ){
- logger.debug("Free decompression resources...");
- decompressVideo.freeResources();
- }
- }catch (CompressionException e) {
- logger.error(e);
- }finally{
- try{
- if( decompressVideo.isOpened() ){
- logger.debug("Closing decompression driver...");
- decompressVideo.close();
- }
- }catch (CompressionException e) {
- logger.error(e);
- }
- }
- }
- logger.info("Webcam capture stopped.");
- }
- /**
- * Configure the device.
- * @throws Exception
- */
- private void configureDevice() throws Exception {
- //Create the capture window
- device.createCaptureWindow("Webcam device", 640, 480, 0, 0);
- if( !device.isCaptureWindowCreated() )
- throw new Exception("Unable to create webcam capture window!");
-
- // Add listeners
- device.addDeviceErrorListener( errorListener );
- device.addDeviceStatusListener( statusListener );
- device.addDeviceFrameListener( frameListener );
-
- // Connect the window to device driver
- device.connect();
- if( !device.isConnected() )
- throw new Exception("Unable to connect webcam capture window to the webcam driver!");
- logger.debug("Webcam device is now connected to the webcam window. Do not close this program before calling stopCapture. Otherwise you can cause damage to your video device.");
-
- device.setScale(false);
- device.setPreview(false);
- device.setPreviewRate(rate);
- }
- /**
- * Configure the decompressor
- * @throws CompressionException If no compressor found.
- */
- private void configureDecompressor() throws CompressionException {
- // Get back device bit map info input
- BitmapInfoHeader bitmapInfoInput = device.getBitMapInfo().bmiHeader;
-
- // Build the output format
- bitmapInfoOutput = new BitmapInfoHeader();
- bitmapInfoOutput.biBitCount = 24;
- bitmapInfoOutput.biCompression = BitmapInfoHeader.BI_RGB;
- bitmapInfoOutput.biHeight = bitmapInfoInput.biHeight;
- bitmapInfoOutput.biWidth = bitmapInfoInput.biWidth;
- bitmapInfoOutput.biSizeImage = bitmapInfoInput.biSizeImage = 0;
- bitmapInfoOutput.biSize = bitmapInfoInput.biSize = bitmapInfoInput.size();
- bitmapInfoOutput.biPlanes = bitmapInfoInput.biPlanes = 1;
- bitmapInfoOutput.biXPelsPerMeter = bitmapInfoOutput.biYPelsPerMeter = bitmapInfoInput.biXPelsPerMeter = bitmapInfoInput.biYPelsPerMeter = 0;
- bitmapInfoOutput.biClrUsed = bitmapInfoOutput.biClrImportant = bitmapInfoInput.biClrUsed = bitmapInfoInput.biClrImportant = 256;
-
- Codec codecInput = Codecs.getCodec(bitmapInfoInput.biCompression);
- if (codecInput != null){
- logger.info("Device input codec is " + codecInput.getFourCCString() + ": " + codecInput.getLongName());
- }
- Codec codecOutput = Codecs.getCodec(bitmapInfoOutput.biCompression);
- if (codecOutput != null){
- logger.info("Device output codec is " + codecOutput.getFourCCString() + ": " + codecOutput.getLongName());
- }
- // Find a decompressor from the input format to the output
- decompressVideo = DecompressVideo.findDecompressorVideo(bitmapInfoInput, bitmapInfoOutput);
-
- //Check if a decompressor was found
- if( decompressVideo == null ){
- throw new CompressionException("No decompressor found from this input codec to this output.", ICM.ICERR_BADFORMAT);
- }
-
- // Allocate decompressed data buffer
- decompressedData = new Memory(3
- * bitmapInfoOutput.biHeight * bitmapInfoOutput.biWidth);
-
- // Opening decompression driver
- decompressVideo.open();
-
- // Begin decompression
- decompressVideo.begin(bitmapInfoInput, bitmapInfoOutput);
- }
- /**
- * Read decompressed datas in memory.
- * Warning NO Thread safe.
- * @return The decompressed data.
- */
- private byte[] getDatas(){
- return decompressedData.getByteArray(0, (int) decompressedData.getSize());
- }
- /**
- * A buffered image of the decompressed data.
- * @return The decompressed image.
- */
- public BufferedImage getBufferedImage(){
- BufferedImage image = null;
- synchronized (decompressedData) {
- byte[] data = getDatas();
- image = convertToAWT(data, bitmapInfoOutput.biWidth, bitmapInfoOutput.biHeight );
- }
- return image;
- }
-
- /**
- * Get a JPG image of the decompressed datas as byte array.
- * @param imageQuality The image quality.
- * @return Byte array of the JPG image data.
- */
- public byte[] getJpgBuffer( float imageQuality ){
- BufferedImage bufferImage = getBufferedImage();
- ByteArrayOutputStream outputArray = new ByteArrayOutputStream();
-
- JPEGImageEncoder jpegEncoder = JPEGCodec.createJPEGEncoder(outputArray);
- JPEGEncodeParam jpegParam = jpegEncoder.getDefaultJPEGEncodeParam(bufferImage);
- jpegParam.setQuality(imageQuality, false);
- jpegEncoder.setJPEGEncodeParam(jpegParam);
- try
- {
- jpegEncoder.encode(bufferImage);
- outputArray.close();
- } catch (java.io.IOException IOEx) {IOEx.printStackTrace();}
-
- return outputArray.toByteArray();
- }
-
- /**
- * Converts a byte data image to a AWT
- * <code>BufferedImage</code>.
- * @param data The byte data array to be converted.
- * @return The AWT image version.
- */
- private BufferedImage convertToAWT(byte[] data, int width, int height) {
- ColorModel colorModel = null;
- colorModel = new DirectColorModel(24, 0xFF, 0xFF00, 0xFF0000);
- BufferedImage bufferedImage = new BufferedImage(colorModel,
- colorModel.createCompatibleWritableRaster(width,height), false, null);
- WritableRaster raster = bufferedImage.getRaster();
- int[] pixelArray = new int[3];
- for (int y = 0; y < height; y++) {
- for (int x = 0; x < width * 3; x+=3) {
- pixelArray[0] = data[ ( height - y - 1) * width * 3 + x + 2 ];
- pixelArray[1] = data[ ( height - y - 1) * width * 3 + x + 1 ];
- pixelArray[2] = data[ ( height - y - 1) * width * 3 + x];
- raster.setPixel(x / 3, y, pixelArray);
- }
- }
- return bufferedImage;
- }
- private DeviceErrorListener errorListener = new DeviceErrorListener(){
- /**
- * Fire the listener that the device throws an error message.
- *
- * @param device
- * The device in error state.
- * @param errorId
- * The error id is one of the constants below.
- * @param errorMessage
- * The error message.
- */
- public void deviceError(Device device, int errorId, String errorMessage){
- logger.error(device + "=>" + errorId + ":" + errorMessage);
- }
- };
- private DeviceStatusListener statusListener = new DeviceStatusListener(){
- /**
- * Fire the listener that the device fire a status message.
- *
- * @param device
- * The device.
- * @param statusId
- * The status id is one of the constants below.
- * @param statusMessage
- * The status message.
- */
- public void deviceStatus(Device device, int statusId, String statusMessage){
- logger.info(device + "=>" + statusId + ":" + statusMessage);
- }
-
- };
- private DeviceFrameListener frameListener = new DeviceFrameListener(){
- /**
- *
- * @param device The device
- * @param videoHDR The video header
- * @param data The frame data.
- */
- public void frame(Device device, VideoHDR videoHDR, Memory data){
- try{
- synchronized (decompressedData) {
- //Decompress data
- decompressVideo.decompress(ICM.ICDECOMPRESS_HURRYUP,
- data, decompressedData);
- }
- }catch (CompressionException e) {
- logger.error(e);
- // Stop the capture
- capture = false;
- }
- }
- };
- /**
- * Check if the webcam capture continue.
- * @return True if capture frame processing, false otherwise.
- */
- public boolean isCapture() {
- return capture;
- }
- /**
- * Check if all is ok.
- * @return True if both device and decompressor are set.
- */
- public boolean isAvailable() {
- return available;
- }
- }
/**
* HTTP Webcam Server Version 1.0
* (c) 2008 Pierrick HYMBERT <pierrick.hymbert@gmail.com>
* This library is "PROVIDED AS IS" without guaranty of any kinds.
* Freely distribuable under the terms of an MIT-style license.
* Visit www.hypik.fr
*/
package org.hypik.webcamlib.test.server;
import java.awt.image.BufferedImage;
import java.awt.image.ColorModel;
import java.awt.image.DirectColorModel;
import java.awt.image.WritableRaster;
import java.io.ByteArrayOutputStream;
import org.apache.log4j.Logger;
import org.hypik.webcamlib.codecs.Codec;
import org.hypik.webcamlib.codecs.Codecs;
import org.hypik.webcamlib.compressor.CompressionException;
import org.hypik.webcamlib.compressor.DecompressVideo;
import org.hypik.webcamlib.compressor.jna.ICM;
import org.hypik.webcamlib.device.Device;
import org.hypik.webcamlib.device.listener.DeviceErrorListener;
import org.hypik.webcamlib.device.listener.DeviceFrameListener;
import org.hypik.webcamlib.device.listener.DeviceStatusListener;
import org.hypik.webcamlib.jna.User32.BitmapInfoHeader;
import org.hypik.webcamlib.jna.User32.VideoHDR;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import com.sun.jna.Memory;
/**
* This class manage the webcam capture in a thread.
* After configure decompression video driver and webcam device.
* Instance can grab frame every rate seconds and decompress it.
* Frame data can be get back as RGB or Jpeg formats.
* @author Pierrick Hymbert <a href="mailto:pierrick.hymbert@gmail.com">Contact</a>
*
*/
public class WebcamCapture extends Thread {
/**
* The class logger.
*/
private Logger logger = Logger.getLogger(WebcamCapture.class);
/**
* The webcam device.
*/
private Device device;
/**
* Time between each frame.
*/
private int rate;
/**
* Indicates if we must continue capturing frame.
*/
private boolean capture = false;
/**
* Indicate that all is configured.
*/
private boolean available = false;
/**
* The video driver decompression.
*/
private DecompressVideo decompressVideo;
/**
* The decompressed data.
*/
private Memory decompressedData;
/**
* The output frame format.
*/
private BitmapInfoHeader bitmapInfoOutput;
/**
* Build a webcam capture.
* @param device The webcam
* @param rate The refresh rate.
*/
public WebcamCapture(Device device, int rate){
super("WCCapture #" + device.getIndex());
this.device = device;
this.rate = rate;
}
/**
* Ask the thread to stop the capture.
*/
public void stopCapture() {
this.capture = false;
}
/**
* Start the thread.
*/
public void startCapture() {
this.capture = true;
this.start();
}
/**
* Run webcam capture until stopCapture is called.
*/
public void run() {
try{
// Configure device and decompressor
logger.debug("Configuring webcam device...");
configureDevice();
logger.debug("Configuring frame decompressor...");
configureDecompressor();
logger.info("Webcam capture started.");
}catch( Exception e ){
logger.error(e);
capture = false;
}
available = true;
// Caputre loop
while( capture ){
// Sometimes call back functions are disabled.
device.forceCallBacks();
device.grabFrame();
try{
Thread.sleep(rate);
}catch (Exception e) {
logger.error(e);
capture = false;
}
}
logger.debug("Disconnecting webcam device...");
// Destroy window and disconnect
device.stop();
if( decompressVideo != null ){
try{
if( decompressVideo.isOpened() ){
logger.debug("Free decompression resources...");
decompressVideo.freeResources();
}
}catch (CompressionException e) {
logger.error(e);
}finally{
try{
if( decompressVideo.isOpened() ){
logger.debug("Closing decompression driver...");
decompressVideo.close();
}
}catch (CompressionException e) {
logger.error(e);
}
}
}
logger.info("Webcam capture stopped.");
}
/**
* Configure the device.
* @throws Exception
*/
private void configureDevice() throws Exception {
//Create the capture window
device.createCaptureWindow("Webcam device", 640, 480, 0, 0);
if( !device.isCaptureWindowCreated() )
throw new Exception("Unable to create webcam capture window!");
// Add listeners
device.addDeviceErrorListener( errorListener );
device.addDeviceStatusListener( statusListener );
device.addDeviceFrameListener( frameListener );
// Connect the window to device driver
device.connect();
if( !device.isConnected() )
throw new Exception("Unable to connect webcam capture window to the webcam driver!");
logger.debug("Webcam device is now connected to the webcam window. Do not close this program before calling stopCapture. Otherwise you can cause damage to your video device.");
device.setScale(false);
device.setPreview(false);
device.setPreviewRate(rate);
}
/**
* Configure the decompressor
* @throws CompressionException If no compressor found.
*/
private void configureDecompressor() throws CompressionException {
// Get back device bit map info input
BitmapInfoHeader bitmapInfoInput = device.getBitMapInfo().bmiHeader;
// Build the output format
bitmapInfoOutput = new BitmapInfoHeader();
bitmapInfoOutput.biBitCount = 24;
bitmapInfoOutput.biCompression = BitmapInfoHeader.BI_RGB;
bitmapInfoOutput.biHeight = bitmapInfoInput.biHeight;
bitmapInfoOutput.biWidth = bitmapInfoInput.biWidth;
bitmapInfoOutput.biSizeImage = bitmapInfoInput.biSizeImage = 0;
bitmapInfoOutput.biSize = bitmapInfoInput.biSize = bitmapInfoInput.size();
bitmapInfoOutput.biPlanes = bitmapInfoInput.biPlanes = 1;
bitmapInfoOutput.biXPelsPerMeter = bitmapInfoOutput.biYPelsPerMeter = bitmapInfoInput.biXPelsPerMeter = bitmapInfoInput.biYPelsPerMeter = 0;
bitmapInfoOutput.biClrUsed = bitmapInfoOutput.biClrImportant = bitmapInfoInput.biClrUsed = bitmapInfoInput.biClrImportant = 256;
Codec codecInput = Codecs.getCodec(bitmapInfoInput.biCompression);
if (codecInput != null){
logger.info("Device input codec is " + codecInput.getFourCCString() + ": " + codecInput.getLongName());
}
Codec codecOutput = Codecs.getCodec(bitmapInfoOutput.biCompression);
if (codecOutput != null){
logger.info("Device output codec is " + codecOutput.getFourCCString() + ": " + codecOutput.getLongName());
}
// Find a decompressor from the input format to the output
decompressVideo = DecompressVideo.findDecompressorVideo(bitmapInfoInput, bitmapInfoOutput);
//Check if a decompressor was found
if( decompressVideo == null ){
throw new CompressionException("No decompressor found from this input codec to this output.", ICM.ICERR_BADFORMAT);
}
// Allocate decompressed data buffer
decompressedData = new Memory(3
* bitmapInfoOutput.biHeight * bitmapInfoOutput.biWidth);
// Opening decompression driver
decompressVideo.open();
// Begin decompression
decompressVideo.begin(bitmapInfoInput, bitmapInfoOutput);
}
/**
* Read decompressed datas in memory.
* Warning NO Thread safe.
* @return The decompressed data.
*/
private byte[] getDatas(){
return decompressedData.getByteArray(0, (int) decompressedData.getSize());
}
/**
* A buffered image of the decompressed data.
* @return The decompressed image.
*/
public BufferedImage getBufferedImage(){
BufferedImage image = null;
synchronized (decompressedData) {
byte[] data = getDatas();
image = convertToAWT(data, bitmapInfoOutput.biWidth, bitmapInfoOutput.biHeight );
}
return image;
}
/**
* Get a JPG image of the decompressed datas as byte array.
* @param imageQuality The image quality.
* @return Byte array of the JPG image data.
*/
public byte[] getJpgBuffer( float imageQuality ){
BufferedImage bufferImage = getBufferedImage();
ByteArrayOutputStream outputArray = new ByteArrayOutputStream();
JPEGImageEncoder jpegEncoder = JPEGCodec.createJPEGEncoder(outputArray);
JPEGEncodeParam jpegParam = jpegEncoder.getDefaultJPEGEncodeParam(bufferImage);
jpegParam.setQuality(imageQuality, false);
jpegEncoder.setJPEGEncodeParam(jpegParam);
try
{
jpegEncoder.encode(bufferImage);
outputArray.close();
} catch (java.io.IOException IOEx) {IOEx.printStackTrace();}
return outputArray.toByteArray();
}
/**
* Converts a byte data image to a AWT
* <code>BufferedImage</code>.
* @param data The byte data array to be converted.
* @return The AWT image version.
*/
private BufferedImage convertToAWT(byte[] data, int width, int height) {
ColorModel colorModel = null;
colorModel = new DirectColorModel(24, 0xFF, 0xFF00, 0xFF0000);
BufferedImage bufferedImage = new BufferedImage(colorModel,
colorModel.createCompatibleWritableRaster(width,height), false, null);
WritableRaster raster = bufferedImage.getRaster();
int[] pixelArray = new int[3];
for (int y = 0; y < height; y++) {
for (int x = 0; x < width * 3; x+=3) {
pixelArray[0] = data[ ( height - y - 1) * width * 3 + x + 2 ];
pixelArray[1] = data[ ( height - y - 1) * width * 3 + x + 1 ];
pixelArray[2] = data[ ( height - y - 1) * width * 3 + x];
raster.setPixel(x / 3, y, pixelArray);
}
}
return bufferedImage;
}
private DeviceErrorListener errorListener = new DeviceErrorListener(){
/**
* Fire the listener that the device throws an error message.
*
* @param device
* The device in error state.
* @param errorId
* The error id is one of the constants below.
* @param errorMessage
* The error message.
*/
public void deviceError(Device device, int errorId, String errorMessage){
logger.error(device + "=>" + errorId + ":" + errorMessage);
}
};
private DeviceStatusListener statusListener = new DeviceStatusListener(){
/**
* Fire the listener that the device fire a status message.
*
* @param device
* The device.
* @param statusId
* The status id is one of the constants below.
* @param statusMessage
* The status message.
*/
public void deviceStatus(Device device, int statusId, String statusMessage){
logger.info(device + "=>" + statusId + ":" + statusMessage);
}
};
private DeviceFrameListener frameListener = new DeviceFrameListener(){
/**
*
* @param device The device
* @param videoHDR The video header
* @param data The frame data.
*/
public void frame(Device device, VideoHDR videoHDR, Memory data){
try{
synchronized (decompressedData) {
//Decompress data
decompressVideo.decompress(ICM.ICDECOMPRESS_HURRYUP,
data, decompressedData);
}
}catch (CompressionException e) {
logger.error(e);
// Stop the capture
capture = false;
}
}
};
/**
* Check if the webcam capture continue.
* @return True if capture frame processing, false otherwise.
*/
public boolean isCapture() {
return capture;
}
/**
* Check if all is ok.
* @return True if both device and decompressor are set.
*/
public boolean isAvailable() {
return available;
}
}
Conclusion
Si cette source s'avère utilisée je me pencherai sur une manière de sécuriser l'accès à la webcam par mot de passe.
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
serveur http webcam " clé en main"... [ par eric35 ]
Salut à tous Bon je suis un petit nouveau et pas très bon en programmation .... d 'où mes questions un poil simplettes sur ce site !j 'ai développé un
Affichage d'une webcam IP [ par stage3 ]
bonjour, j'ai un probleme avec un projet, je m'explique, je dois afficher le flux d'une camera trendnet ip100 dans mon application (et non dans une pa
JAR et Serveur Web [ par GRenard ]
Bonjour,Je voudrais savoir s'il y avait un moyen de désactiver l'option que lorsqu'une classe n'existe pas dans le .jar (chargée par exemple
serveur virtuel avec oracle http server [ par krikete ]
slt a tous;je suis entrain de faire une application web avec jdevloper 10g et comme serveur d'application OC4j je souhaterais créé un serveur virtuel
J2ME - serveur HTTP [ par bsophia ]
Bonjour tout le monde, J'ai un exposé sur comment rendre une application j2me telechargeable, sur un vrai mobile? Comment l'installer sur un serv
Proxy HTTP [ par junior31490 ]
Bonjour,Je vous écris parce que j'ai vraiment besopin d'aide.Voilà, je dois développer un petit proxy tout simple, permettant de récupérer une requête
creation d'un client php et serveur http en java [ par minamak ]
slt tous le monde, bein moi je suis débutante en progrmmation sockets et application reseau en general , et mon problème est que je veux réaliser une
http et udp?? [ par Disizme ]
Slt,j'ai un sérieux doute. Je suis en train d'implémenter un serveur qui traite des requêtes http qu'il reçoit par des sockets et je me demandais si j
client/serveur hppt [ par djedouboum ]
salut mes amis, je suis debutante en java et je voudrai creer 2 programme Le 1er pour le client et le 2éme pour le serveur tout ça pour faire une com
|
Derniers Blogs
UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010 par ROMELARD Fabrice
Animé par: Vincent Bellet et Baptiste Giraudier La BI dans SharePoint 2010, Les nouveaux services d'application dans SP2010 et SQL Server Reporting services 2008 R2. La BI dans SharePoint est généralisée pour tous afin de permettre à tous les coll...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
Comparez les prix

HTC Hero
Entre 550€ et 550€
|