0
<div class="eight columns">
<form method="post" action="http://www.way2franchise.com/search/filter_franchise">

<div style="margin-bottom:10px;margin-top:20px;">

<select name="industry" id="industry" class="searchBoxSel" title="Select Industry">

<option value="candies_and_confectioneries">Candies and Confectioneries</option>
<option value="childrens_services"> Children's Services</option>
<option value="sports_and_recreatio">Sports &amp; Recreation</option>
<option value="staffing_franchises">Staffing Franchises</option>

<div style="margin-bottom:10px;">
<select name="investment" id="investment" class="searchBoxSel" title="Select     Investment">

<option value="">Select Investment</option>
<option value="2500000">Under Rs.2,500,000</option>
<option value="10000000">Under Rs.10,000,000</option>
<option value="50000000">Under Rs.50,000,000</option>
</select>
</div>


<div style="margin-bottom:10px;">
<select class="searchBoxSel" title="Select State" id="state" name="state">
<option value="">Select State</option>
<option value="Andaman and Nicobar Islands">Andaman and Nicobar</option>
<option value="Andhra Pradesh">Andhra Pradesh</option>
<option value="Arunachal Pradesh">Arunachal Pradesh</option>

</select>
</div>
</form></div>

    Here, I need to get the option value pair in an array.While testing the code out i executed the following code:

     String q=doc.select("eight columns").text();
     System.out.println(q); 

Jsoup セレクター構文を使用して、コード全体を文字列 'q' に入れることになっています。しかし、代わりに null 値を取得しています (logcat)。方法?

また、 doc.select("h3.r > a> p >h1") はどういう意味ですか? これに関する良いチュートリアルは見つかりませんでした.jsoupクックブックでさえ、これらの概念をより広い側面で説明していません.

、親、兄弟の概念のように、DOMの概念を調べました。そこで、ノードに関する概念を読みました。だから Elements e=doc として何かを書いている間。.... または要素 e=doc

代わりにノードを作成する代わりに使用できますか?これは実行可能ですか?推奨されますか?

HTMLから文字列の値をほとんどエスケープできません。

4

1 に答える 1

0

クラス「8列」を取得したい場合は、 getElementsByClass() の例を使用できます。

Elements eightcolumns = doc.getElementsByClass("eight columns");
            String str = eightcolumns.first().text();

または select() :

 Elements eightcolumns = doc.select("div.eight columns");
            String str = eightcolumns.first().text();
于 2013-03-11T20:00:37.727 に答える