A voir également:
- HTMLparser en java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Waptrick java voiture - Télécharger - Jeux vidéo
- Java décompiler - Télécharger - Langages
1 réponse
J'ai bifurqué sur Jericho Html Parser qui a l'air mieux documenté.
J'ai trouvé ce code :
<code type="java">
import net.htmlparser.jericho.*;
import java.util.*;
import java.io.*;
import java.net.*;
public class test2 {
public static void main(String[] args) throws Exception {
String sourceUrlString="test.htm";
if (args.length==0)
System.err.println("Using default argument of \""+sourceUrlString+'"');
else
sourceUrlString=args[0];
if (sourceUrlString.indexOf(':')==-1) sourceUrlString="file:"+sourceUrlString;
MicrosoftTagTypes.register();
MasonTagTypes.register();
Source source=new Source(new URL(sourceUrlString));
System.out.println("\n*******************************************************************************\n");
System.out.println("Tags starting with <td class="match"");
displaySegments(source.getAllStartTags("td class="match""));
//System.out.println("CDATA sections:");
//displaySegments(source.getAllTags(StartTagType.CDATA_SECTION));
//System.out.println("Common server tags: (eg ASP, JSP, PSP, ASP-style PHP or Mason substitution tag)");
//displaySegments(source.getAllTags(StartTagType.SERVER_COMMON));
//System.out.println("Tags starting with <%=var");
//displaySegments(source.getAllStartTags("%=var"));
//System.out.println("HTML Comments:");
//displaySegments(source.getAllTags(StartTagType.COMMENT));
//System.out.println("Elements in namespace \"o\" (generated by MS-Word):");
//displaySegments(source.getAllElements("o:"));
//System.out.println("Tags starting with <![ (commonly generated by MS-Word):");
//displaySegments(source.getAllStartTags("!["));
// Note: The end of a PHP tag can not be reliably found without the use of a PHP parser,
// meaning any PHP tag found by this library is not guaranteed to have the correct end position.
// System.out.println("Standard PHP tags:");
// displaySegments(source.getAllTags(PHPTagTypes.PHP_STANDARD));
// System.out.println("Short PHP tags:");
// displaySegments(source.getAllTags(PHPTagTypes.PHP_SHORT));
// System.out.println("Mason Component Calls:");
// displaySegments(source.getAllTags(MasonTagTypes.MASON_COMPONENT_CALL));
//System.out.println("Mason Components Called With Content:");
//displaySegments(source.getAllElements(MasonTagTypes.MASON_COMPONENT_CALLED_WITH_CONTENT));
//System.out.println("Mason Named Blocks:");
//displaySegments(source.getAllElements(MasonTagTypes.MASON_NAMED_BLOCK));
// System.out.println("Unregistered start tags:");
// displaySegments(source.getAllTags(StartTagType.UNREGISTERED));
//System.out.println("Unregistered end tags:");
// displaySegments(source.getAllTags(EndTagType.UNREGISTERED));
System.out.println(source.getCacheDebugInfo());
}
private static void displaySegments(List<? extends Segment> segments) {
for (Segment segment : segments) {
System.out.println("-------------------------------------------------------------------------------");
System.out.println(segment.getDebugInfo());
System.out.println(segment);
}
System.out.println("\n*******************************************************************************\n");
}
}
</code>
La librairie est téléchargeable ici :
http://www.java2s.com/Code/JarDownload/jericho-html-3.0.jar.zip
Je ne m'en sors pas vraiment. Je n'arrive pas a extraire ce qu'il y a dans la balise <td class="match">.
Une idée?
J'ai trouvé ce code :
<code type="java">
import net.htmlparser.jericho.*;
import java.util.*;
import java.io.*;
import java.net.*;
public class test2 {
public static void main(String[] args) throws Exception {
String sourceUrlString="test.htm";
if (args.length==0)
System.err.println("Using default argument of \""+sourceUrlString+'"');
else
sourceUrlString=args[0];
if (sourceUrlString.indexOf(':')==-1) sourceUrlString="file:"+sourceUrlString;
MicrosoftTagTypes.register();
MasonTagTypes.register();
Source source=new Source(new URL(sourceUrlString));
System.out.println("\n*******************************************************************************\n");
System.out.println("Tags starting with <td class="match"");
displaySegments(source.getAllStartTags("td class="match""));
//System.out.println("CDATA sections:");
//displaySegments(source.getAllTags(StartTagType.CDATA_SECTION));
//System.out.println("Common server tags: (eg ASP, JSP, PSP, ASP-style PHP or Mason substitution tag)");
//displaySegments(source.getAllTags(StartTagType.SERVER_COMMON));
//System.out.println("Tags starting with <%=var");
//displaySegments(source.getAllStartTags("%=var"));
//System.out.println("HTML Comments:");
//displaySegments(source.getAllTags(StartTagType.COMMENT));
//System.out.println("Elements in namespace \"o\" (generated by MS-Word):");
//displaySegments(source.getAllElements("o:"));
//System.out.println("Tags starting with <![ (commonly generated by MS-Word):");
//displaySegments(source.getAllStartTags("!["));
// Note: The end of a PHP tag can not be reliably found without the use of a PHP parser,
// meaning any PHP tag found by this library is not guaranteed to have the correct end position.
// System.out.println("Standard PHP tags:");
// displaySegments(source.getAllTags(PHPTagTypes.PHP_STANDARD));
// System.out.println("Short PHP tags:");
// displaySegments(source.getAllTags(PHPTagTypes.PHP_SHORT));
// System.out.println("Mason Component Calls:");
// displaySegments(source.getAllTags(MasonTagTypes.MASON_COMPONENT_CALL));
//System.out.println("Mason Components Called With Content:");
//displaySegments(source.getAllElements(MasonTagTypes.MASON_COMPONENT_CALLED_WITH_CONTENT));
//System.out.println("Mason Named Blocks:");
//displaySegments(source.getAllElements(MasonTagTypes.MASON_NAMED_BLOCK));
// System.out.println("Unregistered start tags:");
// displaySegments(source.getAllTags(StartTagType.UNREGISTERED));
//System.out.println("Unregistered end tags:");
// displaySegments(source.getAllTags(EndTagType.UNREGISTERED));
System.out.println(source.getCacheDebugInfo());
}
private static void displaySegments(List<? extends Segment> segments) {
for (Segment segment : segments) {
System.out.println("-------------------------------------------------------------------------------");
System.out.println(segment.getDebugInfo());
System.out.println(segment);
}
System.out.println("\n*******************************************************************************\n");
}
}
</code>
La librairie est téléchargeable ici :
http://www.java2s.com/Code/JarDownload/jericho-html-3.0.jar.zip
Je ne m'en sors pas vraiment. Je n'arrive pas a extraire ce qu'il y a dans la balise <td class="match">.
Une idée?