I have some string stored in
String url="*/One Url/*"
Document doc = Jsoup.connect(url).get();
Elements paragraphs = doc.select("td");
for(Element p : paragraphs)
System.out.println(p.text());
So in p.text() I have some strings. And the output is in several lines. Now is there is any way by which I can handle the output in string array. So that I can use the data in different place.