Rosetta Code/Count examples: Difference between revisions

Adjusted length of lines to approx. 80 chars
(Adjusted length of lines to approx. 80 chars)
Line 608:
 
=={{header|Java}}==
{{lines_too_long|Java}}
{{works with|Java|1.5+}}
<lang java5>
Line 616 ⟶ 615:
public class CountProgramExamples {
private static final String baseURL = "http://rosettacode.org/wiki/";
private static final String rootURL = "http://www.rosettacode.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:Programming_Tasks&cmlimit=500&format=xml";
+ "api.php?action=query&list=categorymembers"
+ "&cmtitle=Category:Programming_Tasks&cmlimit=500&format=xml";
private static final String taskBegin = "title=\"";
private static final String taskEnd = "\"";
Line 622 ⟶ 623:
private static final String exmplEnd = "</span>";
private static final String editBegin = "<span class=\"editsection\">";
 
/**
* @param args
Line 633 ⟶ 634:
ScreenScrape ss = new ScreenScrape();
String rootPage = ss.read(rootURL);
while (rootPage.contains(taskBegin)) {
rootPage = rootPage.substring(rootPage.indexOf(taskBegin)+taskBegin.length());
+ taskBegin.length());
String title = rootPage.substring(0, rootPage.indexOf(taskEnd));
if (!title.contains("Category:")) {
Line 642 ⟶ 644:
}
// Loop through each task and print count
for (String task : tasks) {
String title = task.replaceAll("&#039;", "'");
String taskPage = ss.read(baseURL + title.replaceAll(" ", "_"));
int exSubTot;
if (taskPage.contains(exmplBegin)) {
int startPos = taskPage.lastIndexOf(exmplBegin)+exmplBegin.length();
+ exmplBegin.length();
String countStr = taskPage.substring(startPos, taskPage.indexOf(exmplEnd, startPos));
exSubTot = Integer.parseInt(countStr.contains(".") ?
taskPage.indexOf(exmplEnd, startPos));
countStr.substring(0,countStr.indexOf(".")) : countStr);
exSubTot = Integer
}else{
exSubTot = Integer .parseInt(countStr.contains(".") ? countStr
countStr .substring(0, countStr.indexOf(".")) : countStr);
: countStr);
} else {
exSubTot = 0;
while (taskPage.contains(editBegin)) {
taskPage = taskPage.substring(taskPage.indexOf(editBegin)+editBegin.length());
.indexOf(editBegin) + editBegin.length());
exSubTot++;
}
}
exTotal += exSubTot;
System.out.println(title + ": " + exSubTot + " examples.");
}
// Print total
System.out.println("\nTotal: " + exTotal + " examples.");
} catch (Exception e) {
System.out.println(title);
System.out.println(startPos + ":"+taskPage.indexOf(exmplEnd, startPos));
+ taskPage.indexOf(exmplEnd, startPos));
System.out.println(taskPage);
e.printStackTrace(System.out);
Line 671 ⟶ 679:
}
}
 
</lang>
[[Count programming examples/Java/ScreenScrape|ScreenScrape class]]
Anonymous user