我正在尝试编写一个连接到网站的程序,获取源代码,使用节点查找<body>
标记。在该标记内有三个“文本字段”,我想输入值,并将其流回网站。
我到目前为止找到<body>
标签,但现在我实际上一无所知。
try
{
Tidy tidy = new Tidy();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Document docx = tidy.parseDOM(new URL("http://www.clubvip.co.za/Login.aspx").openStream(), baos);
Node n = docx.getFirstChild();
System.out.println(n.getNodeName());
n = n.getFirstChild();
System.out.println(n.getNodeName());
while (n != null)
{
while (n != null) {
if (n.getNodeName() != "body") {
n = n.getNextSibling();
System.out.println(n.getNodeName());
答案 0 :(得分:0)