BlackBerry HttpConnection Содержание URL - PullRequest
0 голосов
/ 29 августа 2011

Я создаю HttpConnection следующим образом:


try {
   StreamConnection s = (StreamConnection)Connector.open(url);
   HttpConnection httpConn = (HttpConnection)s;                             
} catch (Exception e) {
   Dialog.alert(e.getMessage());
}

Как я могу получить содержимое URL (текст в html-файле url)

Спасибо,

Ответы [ 2 ]

1 голос
/ 03 сентября 2011

Вы можете получить это по следующей ссылке .........

http://supportforums.blackberry.com/t5/Java-Development/Want-to-get-Response-from-the-particular-URL/m-p/1291627#M172814

1 голос
/ 29 августа 2011

Thry как то так:

 StreamConnection c = null;
 InputStream s = null;
 byte[] response;
 try {
     c = (StreamConnection)Connector.open(url);
     s = c.openInputStream();
     response = IOUtilities.streamToBytes(s);
 } finally {
     if (s != null)
         s.close();
     if (c != null)
         c.close();
 }
 String html = new String(response);
...