Here you can find the source of getString(Elements td, int i)
public static String getString(Elements td, int i)
//package com.java2s; //License from project: LGPL import org.jsoup.select.Elements; public class Main { public static String getString(Elements td, int i) { return td.get(i).text(); }//from w w w. j a v a2 s .co m }