I want to find the element "buddyname" and get the element of value= "" in a HTML file which i put into a StringBuffer, in this case 5342test. The element in value= "" can change so i can not search directly for 5342test.

<fieldset style="display:none"><input type="hidden" name="buddyname" value="5342test"/></fieldset> 

How can i do this with jsoup? or is there an easier way, I already tried Pattern/Matcher but that did not work out as i had issues with the Pattern.compile("<input[^>]*?value\\s*?=\\s*?\\\"(.*?)\\\")");

Below some example code. Thank you in advance.

Document doc = Jsoup.parse(page); // page is a StringBuffer
        Elements td = doc.select("fieldset"); 

        for (Element td : tds) { 
          String tdText = td.text();
          System.out.println(tdText);
        } 
link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Just use the attribute selector [attrname=attrvalue].

Element buddynameInput = document.select("input[name=buddyname]").first();
String buddyname = buddynameInput.attr("value");
// ...

Do not use regex to parse HTML. It makes no sense if you already have a world class HTML parser at your hands.

See also:

link|improve this answer
Hi BalusC, Thank you for the answer. I just heard that jsoup has troubles with hidden fields, can you confirm this? Thx – Lars Sep 25 '11 at 14:41
Never heard of this. Perhaps you're confusing with fields generated/manipulated by JavaScript. Jsoup doesn't parse JavaScript. It's just a HTML parser, not a web browser. – BalusC Sep 25 '11 at 14:41
Thx BalusC, Works perfectly.. – Lars Sep 25 '11 at 14:48
You're welcome. Since you're new here, please don't forget to mark the answer accepted whenever it helped most in solving the problem. See also meta.stackoverflow.com/questions/5234/… Don't forget to do the same for your previous questions, whenever applicable: stackoverflow.com/users/963218/user963218 – BalusC Sep 25 '11 at 14:49
Dear BalusC, I marked the answer as accepted :) Have a great day and thx again. – Lars Sep 25 '11 at 15:22
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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