URLConnection con=url.openConnection();
	byte[] datas=new byte[con.getContentLength()];

	DataInputStream stream=
	  new DataInputStream(con.getInputStream());

    stream.readFully(datas);