I am using Coonction class to link with url....... now further how It would be access in main, dwonload and then save in my SD card any one can help me
public class Connection {
private InputStream in;
public InputStream conn(String Link) throws IOException
{
URL url=new URL(Link);
URLConnection c=url.openConnection();
in = c.getInputStream();
return in;
}
}