1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
| package Test;
import java.net.*;
import com.sun.image.codec.jpeg.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.swing.*;
/**********************************************/
public class GestionCamAxis extends JPanel implements Runnable {
public boolean useMJPGStream = true;
public String jpgURL="http://10.104.100.101/axis-cgi/jpg/image.cgi?resolution=704x480";
public String mjpgURL="http://10.104.100.101/axis-cgi/mjpg/video.cgi?resolution=704x480"; //URL de connexion
DataInputStream dis; //flux de données d'éntrée
private Image image=null;
public Dimension imageSize = null;
public boolean connected = false;
private boolean initCompleted = false;
HttpURLConnection huc=null;
Component parent;
/** Crée une nouvelle instance de AxisCamera */
GestionCamAxis (Component parent_) {
parent = parent_;
}
public void connect(){
try{
URL u = new URL(useMJPGStream?mjpgURL:jpgURL);
huc = (HttpURLConnection) u.openConnection();
//System.out.println(huc.getContentType());
InputStream is = huc.getInputStream();
connected = true;
BufferedInputStream bis = new BufferedInputStream(is);
dis= new DataInputStream(bis);
if (!initCompleted) initDisplay();
}catch(IOException e){ //Si aucune connexion n'existe, on attend pour se reconnecter à nouveau
try{
huc.disconnect();
Thread.sleep(60);
}catch(InterruptedException ie){huc.disconnect();connect();}
connect();
}catch(Exception e){;}
}
public void initDisplay(){ //Configuration de l'affichage
if (useMJPGStream)readMJPGStream();
else {readJPG();disconnect();}
parent.validate();
initCompleted = true;
}
public void disconnect(){
try{
if(connected){
dis.close();
connected = false;
}
}catch(Exception e){;}
}
public void paint(Graphics g) { //On fixe l'image dans le Panel
if (image != null)
g.drawImage(image, 0, 0, this);
}
public void readStream(){ //Lecture des flux continu
try{
if (useMJPGStream){
while(true){
readMJPGStream();
parent.repaint();
}
}
else{
while(true){
connect();
readJPG();
parent.repaint();
disconnect();
}
}
}catch(Exception e){;}
}
public void readMJPGStream(){ //lecture du flux mjpg
readLine(3,dis); //Lecture à partir de la 3ème ligne
readJPG();
readLine(2,dis); //on retire les 2 dernières lignes
}
public void readJPG(){ //Lecture de l'image jpeg incorporée
try{
JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(dis);
image = decoder.decodeAsBufferedImage();
}catch(Exception e){e.printStackTrace();disconnect();}
}
public void readLine(int n, DataInputStream dis){ //utilisée pour sauter les lignes d'en-tête
for (int i=0; i<n;i++){
readLine(dis);
}
}
public void readLine(DataInputStream dis){
try{
boolean end = false;
String lineEnd = "\n"; //On suppose que la fin de la ligne est marqué
byte[] lineEndBytes = lineEnd.getBytes();
byte[] byteBuf = new byte[lineEndBytes.length];
while(!end){
dis.read(byteBuf,0,lineEndBytes.length);
String t = new String(byteBuf);
//System.out.print(t); //décommenter pour voir à quoi ressemble les lignes
if(t.equals(lineEnd)) end=true;
}
}catch(Exception e){e.printStackTrace();}
}
public void run() {
connect();
readStream();
}
public static void main(String[] args) {
}
} |
Partager