All Questions
6 questions
4
votes
2
answers
2k
views
Website Spell Checker in Java
I've implemented a program that spell checks a website.
Here is the idea that I have in mind:
Scan all of the words in a web page into a string (using jsoup)
Filter out all of the HTML markup and ...
2
votes
1
answer
155
views
Optimizing Java HTML parser
I wrote a program that goes through a webpage and returns matches of regex. I used it on my letterboxd.com account to go through all of my movies (over 900 entries) and then find genres field for each ...
4
votes
1
answer
180
views
Simple attribute parser for HTML
I am studying Java and trying to write an HTML parser, which should parse tag names and attributes. I wrote a class (code below) using the State pattern.
This is necessary for my training project, ...
7
votes
1
answer
31k
views
Parsing an HTML table using jsoup
I am trying to parse HTML using "jsoup". This is my first time working with "jsoup" and I read some tutorials on it as well.
If you see my table, it has three ...
4
votes
1
answer
10k
views
Simplifying HTML parsing
I'm working on an app for my school (not homework, an app that's going to be used by students), that's supposed to display our week schedules. I get the data from a webapp, but it has no API that I ...
2
votes
1
answer
352
views
HTML downloader and parser for CR
This program downloads a Code Review HTML file and parses it.
Could you review my program?
Main.java
...