Hello,
An example here:
https://processing.org/reference/loadStrings_.html
This worked:
String[] lines = loadStrings("http://www.bochcenter.org/buy/show-listing");
println("there are " + lines.length + " lines");
for (int i = 0; i < lines.length; i++)
{
println(lines[i]);
}
:)