Here you can find the source of getIndustry(Element element)
public static String getIndustry(Element element)
//package com.java2s; //License from project: Apache License import org.jsoup.nodes.Element; public class Main { public static String getIndustry(Element element) { return element.select("span.industry").text(); }/*w ww. j a va 2 s . c o m*/ }