fos=new ByteArrayOutputStream();
IOUtils.copy(is, fos);
log.info("tama�o : " + fos.size());
imagen=fos.toByteArray();
Blob blob=new Blob(imagen);
ImagenLN imagenln=new ImagenLN(new Date(),blob,Long.valueOf(idUsuario),Long.valueOf(idEquipo));
NovedadLNDAO.guardarfoto(imagenln);
res.setStatus(res.SC_OK);
writer.print("{success: true}");