Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
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 ...
ary's user avatar
  • 55
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 ...
mlukas's user avatar
  • 21
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, ...
Weres's user avatar
  • 43
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 ...
arsenal's user avatar
  • 2,187
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 ...
Simon Verbeke's user avatar
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 ...
JSong's user avatar
  • 257