Results 1 to 2 of 2
Thread: Developing HTML Parser in JAVA
- 01-17-2008, 07:18 PM #1
Member
- Join Date
- Jan 2008
- Posts
- 2
- Rep Power
- 0
Developing HTML Parser in JAVA
Hai frndz... I wnat to develop a web extractor that an information site in to a document or txt file with proper format... so i face the following problems. plz help me..
1. javax.swing.text.html.parser Package
this package provides Parsing functions.. replay with some examples..
2. How to add userdefined toolbar to FIREFOX or IE so that to run my application?
3. how to read the HTML source code into a temperory file so that to give as input to the PARSER
4.How to download images using JAVA
- 01-18-2008, 08:07 PM #2
How to download images using Java
Java Code:import java.awt.image.BufferedImage; import java.io.*; import java.net.URL; import javax.imageio.ImageIO; import javax.swing.*; public class DownloadImage { public static void main(String[] args) throws IOException { String path = "http://www.java-forums.org/images/ca_evo/misc/logo.gif"; URL url = new URL(path); InputStream stream = url.openConnection().getInputStream(); BufferedImage image = ImageIO.read(stream); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.add(new JLabel(new ImageIcon(image), JLabel.CENTER)); f.pack(); f.setLocationRelativeTo(null); f.setVisible(true); } }
Similar Threads
-
Developing a new game - looking for Java programmers
By DeadlyAK in forum Jobs OfferedReplies: 2Last Post: 03-27-2012, 11:40 AM -
Developing a complete application in java, help needed
By omaradib in forum New To JavaReplies: 2Last Post: 03-10-2008, 12:24 PM -
Developing simple MP3 player in Java....
By JavaEmpires in forum New To JavaReplies: 0Last Post: 01-16-2008, 10:22 AM -
Java Mozilla Html Parser 0.1.7
By levent in forum Java SoftwareReplies: 0Last Post: 07-30-2007, 04:30 PM -
Jericho HTML Parser 2.4
By levent in forum Java SoftwareReplies: 0Last Post: 05-21-2007, 10:05 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks