Откройте HttpConnection с Connector.open (URL).Затем откройте InputStream из этого соединения, например:
HttpConnection conn = (HttpConnection) Connector.open("http://example.com/somefile.pdf");
InputStream in = conn.openInputStream();
Edit: чтобы сохранить файл на диск, откройте FileConnection и откройте OutputStream оттуда.например:
FileConnection file = (FileConnection) Connector.open("file:///store/home/user/myfile.pdf");
file.create();
OutputStream out = file.openOutputStream();