Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the html contents from a website and I use the jsoup(java open source ) ,to crwal a web site and get the elements with this code:

 Document doc = Jsoup.connect("http://bj.58.com/shangdi/zufang/0/").get();  
        Elements hrefs = doc.select("*");
        Elements hrefs2 = hrefs.select("td:lt(4)");  
        System.out.println(hrefs2);

and i get the result:

<td class="tc"><b class="pri">2100</b></td>
<td class="tc">ABCD</td>
<td class="tc">today</td>

or I edit this code(just add a "text()"in the last line ) :

 Elements hrefs2 = hrefs.select("td:lt(4)");  
 System.out.println(hrefs2.text());

and i get the result:

 2100 ABCD today 

but I really want to acheive is like this result:

   2100,ABCD,today 

is any way to add the comma into the result,so that easy to save the result into the database with csv file.

share|improve this question
I don't know if it is just me, but I do not understand anything you are saying. What do you want to achieve? What have you tried? Please form sentences. – Christian Nov 26 '11 at 14:48
ok,I have edited the src.... – life.is.fast Nov 26 '11 at 14:54

2 Answers

up vote 2 down vote accepted

You can get an iterator over the resultant Elements from hrefs.select, and at that point you can do whatever you want with the list (i.e., format it however you wish).

share|improve this answer
thanks! i am trying.. – life.is.fast Nov 26 '11 at 15:16
As a first step, try something like: for(Element e : hrefs2) { System.println(e.text()); }, then you can figure out how to add commas and things. – Gian Nov 26 '11 at 15:27
it's realy works,thank you! – life.is.fast Nov 27 '11 at 2:18
@life: you should then mark the answer accepted :) See also meta.stackoverflow.com/questions/5234/… – BalusC Nov 27 '11 at 23:48
yes,i see...thanks! – life.is.fast Nov 29 '11 at 12:20

I used tds.append(","); this added a comma to every data element so it imported fine as comma delimited

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.