Here you can find the source of makeAbsolute(Document doc)
public static void makeAbsolute(Document doc)
//package com.java2s; /*//from w w w. j a v a 2s . c o m * Copyright (C) 2014 hu * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.nodes.Node; import org.jsoup.select.NodeVisitor; public class Main { public static void makeAbsolute(Document doc) { doc.traverse(new NodeVisitor() { @Override public void head(Node node, int i) { if (node instanceof Element) { Element tag = (Element) node; if (tag.hasAttr("href")) { String href = tag.attr("abs:href"); tag.attr("href", href); } else if (tag.hasAttr("src")) { String src = tag.attr("abs:src"); tag.attr("src", src); } } } @Override public void tail(Node node, int i) { } }); } }