[Solved] Java get List from a Website [closed]


Here’s what you’re looking for:

while ((sourceLine = source.readLine()) != null) {
    arrayList.add(sourceLine);
}

2

solved Java get List from a Website [closed]