Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Dynamic HTML page display (incremental)

843790Mar 17 2010 — edited Mar 18 2010
Dear All,

I have dynamic page and I can access contents using following code.

connection = new URL("http://www.example.com/test.php").openConnection();
                Scanner scanner = new Scanner(connection.getInputStream());
                scanner.useDelimiter("\\Z");
                content = scanner.next();
But this webpage is dynamic (content is keep updating by time).

How can I display the incremental HTML without downloading all HTML everything.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 15 2010
Added on Mar 17 2010
7 comments
211 views