How To Clean Up All The Formats Of The Web Pages On The Internet?
JiaPei Jen
Ranch Hand
Joined: Nov 19, 2000
Posts: 1309
posted
0
The web pages that we see over the internet is often formatted; i.e. in tables, with fonts, etc. Is there a way to clean up all the formats and print those pages in plain text? Take the interfaces and classes of Java 1.4 API for example, I am trying to read them and print method, parameter, return type, etc. in plain text using Java. Where may I find explanatin on how to do it? [ January 02, 2003: Message edited by: JiaPei Jen ]
Arun Boraiah
Ranch Hand
Joined: Nov 28, 2001
Posts: 233
posted
0
Simple way is copy past the content to plan text editor like notepad. And print it. -arun
Sharing is learning
JiaPei Jen
Ranch Hand
Joined: Nov 19, 2000
Posts: 1309
posted
0
I have a lot of this kind of cleanup work to do. I cannot afford to "copy and paste" by hand. This is the reason I would like to write a Java program to do it. Please if anybody could give me the guidance.