hasan's blog (বল্গ)

work for fun!!!

Archive for May 18th, 2007

JavaFX: Parse HTML content with DOMParser

with one comment

I have started an interesting project. I will illustrate a crawler based on JavaFX scripting. Though there is no specific reason beyond using JavaFX except to enhance my knowledge on JavaFX scripting.

Here is some preliminary code that I have already written:

Import statement and package declaration –

———————————————————

package com.we4tech.linkcrawler.fx.script;

import java.lang.*;

import java.io.*;

import java.net.*;

import java.util.*;

import org.xml.sax.SAXException;

import org.w3c.dom.Document;

import org.w3c.dom.NodeList;

import org.w3c.dom.Node;

import org.w3c.dom.NamedNodeMap;

import com.sun.org.apache.xerces.internal.parsers.DOMParser;

Read the rest of this entry »

Written by nhm tanveer hossain khan

May 18, 2007 at 3:43 am

Posted in Java, JavaFX