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.