当前位置: 首页>>代码示例>>Java>>正文


Java DataNode类代码示例

本文整理汇总了Java中org.jsoup.nodes.DataNode的典型用法代码示例。如果您正苦于以下问题:Java DataNode类的具体用法?Java DataNode怎么用?Java DataNode使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


DataNode类属于org.jsoup.nodes包,在下文中一共展示了DataNode类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: leagueStatusCheck

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
@Test
public void leagueStatusCheck() throws Exception {
    Document doc = Jsoup.connect("http://www.espn.com/wnba/scoreboard/_/group/50")
            .timeout(60 * 1000)
            .maxBodySize(0)
            .get();
    Elements scriptElements = doc.getElementsByTag("script");
    Pattern pattern = Pattern.compile("window.espn.scoreboardData[\\s\t]*= (.*);.*window.espn.scoreboardSettings.*");
    for (Element element : scriptElements) {
        for (DataNode node : element.dataNodes()) {
            if (node.getWholeData().startsWith("window.espn.scoreboardData")) {
                Matcher matcher = pattern.matcher(node.getWholeData());
                if (matcher.matches()) {
                    Gson gson = new Gson();
                    EspnJson espnJson = new Gson().fromJson(matcher.group(1), EspnJson.class);
                    System.out.println(espnJson.getTeams());
                    assertEquals(false, espnJson.getTeams().isEmpty());
                }
            }
        }
    }
}
 
开发者ID:riteshakya037,项目名称:Android-Scrapper,代码行数:23,代码来源:ExampleUnitTest.java

示例2: appendGames

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
private void appendGames(Document document) {
    if (document != null) {
        Elements scriptElements = document.getElementsByTag("script");
        Pattern pattern = Pattern.compile("window.espn.scoreboardData[\\s\t]*= (.*);.*window.espn.scoreboardSettings.*");
        for (Element element : scriptElements) {
            for (DataNode node : element.dataNodes()) {
                if (node.getWholeData().startsWith("window.espn.scoreboardData")) {
                    Matcher matcher = pattern.matcher(node.getWholeData());
                    if (matcher.matches()) {
                        EspnJson espnJson = new Gson().fromJson(matcher.group(1), EspnJson.class);
                        teamsList.putAll(espnJson.getTeams());
                    }
                }
            }
        }
    }
}
 
开发者ID:riteshakya037,项目名称:Android-Scrapper,代码行数:18,代码来源:EspnScoreboardParser.java

示例3: run

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
@Override
public void run() {
    Document parsedDocument = null;
    try {
        parsedDocument = Jsoup.connect(href).timeout(600 * 1000).get();
    } catch (IOException e) {
        e.printStackTrace();
    }
    Elements scriptElements = parsedDocument.getElementsByTag("script");

    Pattern pattern = Pattern.compile(".*value\":\"(.*)\"\\},\\{\"name.*");
    for (Element element : scriptElements) {
        for (DataNode node : element.dataNodes()) {
            Matcher matcher = pattern.matcher(node.getWholeData().replaceAll("\n", ""));
            if (matcher.matches()) {
                System.out.println(teamCity + "," + StringUtils.capitalize(teamName) + "," + matcher.group(1).toUpperCase());
            }
        }
    }
    Thread.currentThread().interrupt();
}
 
开发者ID:riteshakya037,项目名称:Android-Scrapper,代码行数:22,代码来源:ExampleUnitTest.java

示例4: head

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
public void head(Node source, int depth) {
    if (source instanceof Element) {
        Element sourceEl = (Element) source;

        if (whitelist.isSafeTag(sourceEl.tagName())) { // safe, clone and copy safe attrs
            ElementMeta meta = createSafeElement(sourceEl);
            Element destChild = meta.el;
            destination.appendChild(destChild);

            numDiscarded += meta.numAttribsDiscarded;
            destination = destChild;
        } else if (source != root) { // not a safe tag, so don't add. don't count root against discarded.
            numDiscarded++;
        }
    } else if (source instanceof TextNode) {
        TextNode sourceText = (TextNode) source;
        TextNode destText = new TextNode(sourceText.getWholeText());
        destination.appendChild(destText);
    } else if (source instanceof DataNode && whitelist.isSafeTag(source.parent().nodeName())) {
      DataNode sourceData = (DataNode) source;
      DataNode destData = new DataNode(sourceData.getWholeData());
      destination.appendChild(destData);
    } else { // else, we don't care about comments, xml proc instructions, etc
        numDiscarded++;
    }
}
 
开发者ID:SpoonLabs,项目名称:astor,代码行数:27,代码来源:Cleaner.java

示例5: head

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
public void head(Node source, int depth) {
    if (skipChildren) {
        return;
    }

    if (source instanceof Element) {
        Element sourceElement = (Element) source;

        if (isSafeTag(sourceElement)) {
            String sourceTag = sourceElement.tagName();
            Attributes destinationAttributes = sourceElement.attributes().clone();
            Element destinationChild = new Element(Tag.valueOf(sourceTag), sourceElement.baseUri(), destinationAttributes);

            destination.appendChild(destinationChild);
            destination = destinationChild;
        } else if (source != root) {
            skipChildren = true;
        }
    } else if (source instanceof TextNode) {
        TextNode sourceText = (TextNode) source;
        TextNode destinationText = new TextNode(sourceText.getWholeText(), source.baseUri());
        destination.appendChild(destinationText);
    } else if (source instanceof DataNode && isSafeTag(source.parent())) {
        DataNode sourceData = (DataNode) source;
        DataNode destinationData = new DataNode(sourceData.getWholeData(), source.baseUri());
        destination.appendChild(destinationData);
    }
}
 
开发者ID:philipwhiuk,项目名称:q-mail,代码行数:29,代码来源:HeadCleaner.java

示例6: appendGames

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
private void appendGames(Document scoreBoardDocument, HashMap<Status, List<Competitor>> hashMap) {
    Elements scriptElements = scoreBoardDocument.getElementsByTag("script");
    Pattern pattern = Pattern.compile("window.espn.scoreboardData[\\s\t]*= (.*);.*window.espn.scoreboardSettings.*");
    for (Element element : scriptElements) {
        for (DataNode node : element.dataNodes()) {
            if (node.getWholeData().startsWith("window.espn.scoreboardData")) {
                Matcher matcher = pattern.matcher(node.getWholeData());
                if (matcher.matches()) {
                    EspnJson espnJson = new Gson().fromJson(matcher.group(1), EspnJson.class);
                    hashMap.putAll(espnJson.getStatus());
                }
            }
        }
    }
}
 
开发者ID:riteshakya037,项目名称:Android-Scrapper,代码行数:16,代码来源:EspnGameScoreParser.java

示例7: appendReplacement

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
public static void appendReplacement(Matcher matcher, Node node, String replacement) {
	StringBuffer buffer = new StringBuffer();
	matcher.appendReplacement(buffer, "");
	if (buffer.length() != 0)
		node.before(new TextNode(buffer.toString(), node.baseUri()));
	node.before(new DataNode(replacement, node.baseUri()));
}
 
开发者ID:jmfgdev,项目名称:gitplex-mit,代码行数:8,代码来源:JsoupUtils.java

示例8: getLocationFromText

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
public static String getLocationFromText(String text) {
    if (text == null) {
        return null;
    }
    String location = null;
    String strWZxxxxxx = null;
    String strMsg = null;
    Document doc = Jsoup.parse(text);
    Elements scriptTags = doc.getElementsByTag("script");
    String nodeStr = null;
    for (Element tag : scriptTags) {
        for (DataNode node : tag.dataNodes()) {
            nodeStr = node.getWholeData();
            System.out.println("node:" + node);
        }
    }
    for (String str : nodeStr.split("\n")) {
        System.out.println("str:" + str);
        if (str.contains("strWZxxxxxx") && str.contains("|")) {
            strWZxxxxxx = ((str.split("\\|"))[1].split("\""))[0];
            System.out.println(strWZxxxxxx);
        } else if (str.contains("strMsg")) {
            strMsg = (str.split("\""))[1];
            System.out.println(strMsg);
            break;
        }
    }
    if (strMsg != null&&!TextUtils.isEmpty(strMsg)) {
        location = strMsg;
    } else{
        location = strWZxxxxxx;

    }

    return location;
}
 
开发者ID:YangHanqing,项目名称:HfutHelper_Android,代码行数:37,代码来源:LibraryTools.java

示例9: internStyles

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
/**
 * Replace link tags with style tags in order to keep the same inclusion
 * order
 *
 * @param doc
 *            the html document
 * @param cssContents
 *            the list of external css files with their content
 */
private void internStyles(Document doc, List<ExternalCss> cssContents) {
	Elements els = doc.select(CSS_LINKS_SELECTOR);
	for (Element e : els) {
		if (!TRUE_VALUE.equals(e.attr(SKIP_INLINE))) {
			String path = e.attr(HREF_ATTR);
			Element style = new Element(Tag.valueOf(STYLE_TAG), "");
			style.appendChild(new DataNode(getCss(cssContents, path), ""));
			e.replaceWith(style);
		}
	}
}
 
开发者ID:groupe-sii,项目名称:ogham,代码行数:21,代码来源:JsoupCssInliner.java

示例10: head

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
@Override
public void head(Node node, int depth) {
  if (node instanceof Element) {
    Element element = (Element) node;
    String tagName = element.tag().getName();
    if (tagName.equals(HtmlTags.POLYMER_ELEMENT.getName())) {
      renameAttributesAttributeValue(element);
    } else if (tagName.equals("script")) {
      insideScriptElement = true;
    } else {
      renameAllAnnotatedEventAttributes(element);
      renameAllAttributeValues(element);
    }
  } else if (node instanceof TextNode) {
    TextNode textNode = (TextNode) node;
    textNode.text(renameStringWithDatabindingDirectives(textNode.getWholeText()));
  } else if (insideScriptElement && node instanceof DataNode) {
    DataNode dataNode = (DataNode) node;
    String js = dataNode.getWholeData();
    try {
      js = JsRenamer.renameProperties(renameMap, js);
    } catch (JavaScriptParsingException e) {
      System.err.println(e);
    }
    dataNode.setWholeData(js);
  }
}
 
开发者ID:PolymerLabs,项目名称:PolymerRenamer,代码行数:28,代码来源:HtmlRenamer.java

示例11: visit

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
@Override
public void visit(Node node) {
  if (node instanceof TextNode || node instanceof Comment || node instanceof DataNode) {
    node.replaceWith(new TextNode(StringUtils.EMPTY, node.baseUri()));
  }
}
 
开发者ID:Cognifide,项目名称:aet,代码行数:7,代码来源:MarkupVisitor.java

示例12: modifyBootstrapPage

import org.jsoup.nodes.DataNode; //导入依赖的package包/类
@Override
public void modifyBootstrapPage(BootstrapPageResponse response) {
    Document document = response.getDocument();

    // Add the widgetsetUrl parameter to the bootstrap parameters.
    // This is overridden to avoid adding the naive random query
    // parameter (used by core to avoid caching of js file).

    final VaadinService service = response.getSession().getService();
    final VaadinRequest request = response.getRequest();
    final String staticFilePath = service
            .getStaticFileLocation(request);
    // VAADIN folder location
    final String vaadinDir = staticFilePath + "/VAADIN/";
    // Figure out widgetset
    final UICreateEvent event = new UICreateEvent(request,
            response.getUiClass());
    String widgetset = response.getUIProvider().getWidgetset(event);
    if (widgetset == null) {
        widgetset = request.getService()
                .getConfiguredWidgetset(request);
    }
    // Url for the widgetset
    final String widgetsetUrl = String.format(
            "%swidgetsets/%s/%s.nocache.js", vaadinDir, widgetset,
            widgetset);

    // Update the bootstrap page
    Element scriptTag = document.getElementsByTag("script").last();
    String script = scriptTag.html();
    scriptTag.html("");

    script = script.replace("});", ",\"widgetsetUrl\":\"" + widgetsetUrl
            + "\",\"offlineEnabled\":" + isOfflineModeEnabled() + "});");

    scriptTag.appendChild(new DataNode(script, scriptTag.baseUri()));

    if (isCacheManifestEnabled()) {
        // Add cache manifest attribute to html tag
        document.getElementsByTag("html").attr(
                "manifest",
                vaadinDir + "widgetsets/" + widgetset + "/"
                        + generateManifestFileName(response));
    }
}
 
开发者ID:vaadin,项目名称:touchkit,代码行数:46,代码来源:ApplicationCacheSettings.java


注:本文中的org.jsoup.nodes.DataNode类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。