本文整理匯總了Java中org.jsoup.nodes.Element.hasText方法的典型用法代碼示例。如果您正苦於以下問題:Java Element.hasText方法的具體用法?Java Element.hasText怎麽用?Java Element.hasText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.jsoup.nodes.Element
的用法示例。
在下文中一共展示了Element.hasText方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: login
import org.jsoup.nodes.Element; //導入方法依賴的package包/類
/**
* 登陸報工係統
*/
public boolean login() {
HttpPost post = new HttpPost(Api.loginUrl);
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("username", SessionUtil.getUsername()));
params.add(new BasicNameValuePair("password", SessionUtil.getPassword()));
try {
post.setEntity(new UrlEncodedFormEntity(params, Consts.UTF_8));
HttpResponse resp = client.execute(post);// 登陸
String charset = HttpHeaderUtil.getResponseCharset(resp);
String respHtml = StringUtil.removeEmptyLine(resp.getEntity().getContent(), charset == null ? "utf-8" : charset);
Document doc = Jsoup.parse(respHtml);
Elements titles = doc.getElementsByTag("TITLE");
for (Element title : titles) {
if (title.hasText() && title.text().contains("Success")) {
return true;// 登陸成功
}
}
} catch (Exception e) {
logger.error("登陸失敗:", e);
}
return false;
}
示例2: getBandTypes
import org.jsoup.nodes.Element; //導入方法依賴的package包/類
public static Elements getBandTypes(Elements searchLinks, FilterType filterType)
{
for(Iterator<Element> i = searchLinks.iterator(); i.hasNext();) {
Element itemType = i.next().parent().select("div[class*=itemtype]").first();
if(itemType.hasText() && StringUtils.isNotBlank(itemType.text().trim()) && !itemType.text().equalsIgnoreCase(filterType.toString()))
{
i.remove();
}
}
return searchLinks;
}