web browser

I want my application to be able to browse webs, and could show the content in a correct format, but I find it hard to me.Could any one help me or give me some hints?Thanks.
[194 byte] By [mys_mma] at [2007-10-3 4:49:48]
# 1
Where are you stuck? What have you tried? Why didn't it work? etc?
cotton.ma at 2007-7-14 22:54:21 > top of Java-index,Java Essentials,Java Programming...
# 2
I use JEditorPane, but the web can't be displayed correctly.
mys_mma at 2007-7-14 22:54:21 > top of Java-index,Java Essentials,Java Programming...
# 3

this is the html source, using css, the image can't be displayed.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>mm</title>

<style type="text/css">

<!--

body {

background-image: url(333.jpg);

}

-->

</style></head>

<body>

</body>

</html>

mys_mma at 2007-7-14 22:54:21 > top of Java-index,Java Essentials,Java Programming...