Re: Converting html documents to plain text

2002-09-06 Thread Vadim Gritsenko
:* Converting html documents to plain text Hi all, I have to task to convert lots of html documents downloaded with the URLConnection class URL url = new URL(http://host/document.htm;); URLConnection urlConnection = url.openConnection(); ...into plain text document

Converting html documents to plain text

2002-09-05 Thread Francesco Marchioni
Hi all, I have to task to convert lots of html documents downloaded with the URLConnection class URL url = new URL("http://host/document.htm");URLConnection urlConnection = url.openConnection(); ...into plain text document to be written on

RE: Converting html documents to plain text

2002-09-05 Thread Piroumian Konstantin
interface will work with remote documents. -- Konstantin Piroumian -Original Message-From: Francesco Marchioni [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 7:00 PMTo: [EMAIL PROTECTED]Subject: Converting html documents to plain text