Tema: Leer SWF
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/02/2009, 08:09
Avatar de elangelcaido
elangelcaido
 
Fecha de Ingreso: septiembre-2003
Ubicación: Oviedo
Mensajes: 1.068
Antigüedad: 21 años, 6 meses
Puntos: 4
De acuerdo Respuesta: Leer SWF

Gracias GreenEyed, como siempre, por tu referencia.

Para los que tengan mi mismo problema, os dejo un método que encontré por ahí para realizar esta tarea.
Código:
public void guardarSWF(String strURL) {
        FileOutputStream fout = null;
        int c = 0;
        byte b[] = null;

        URL url = null;
        try {
            fout = new FileOutputStream("prueba.swf");
            b = new byte[1024];
            url = new URL(strURL);

            URLConnection con;

            con = url.openConnection();

            InputStream is = con.getInputStream();

            while (c >= 0) {
                c = is.read(b, 0, 1024);
                if (c >= 0) {
                    fout.write(b, 0, c);
                    b = new byte[1024];
                }

            }

            fout.close();
            is.close();
        } catch (FileNotFoundException ex) {
            Logger.getLogger(PruebaFlash.class.getName()).log(Level.SEVERE, null, ex);
        } catch (MalformedURLException ex) {
            Logger.getLogger(PruebaFlash.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IOException ex) {
            Logger.getLogger(PruebaFlash.class.getName()).log(Level.SEVERE, null, ex);
        }


    }
Espero que os sirva.
__________________
Ta Luego! Al final sólo puede quedar uno...
________
lukos.org