I have a list of links here: https://docs.oracle.com/javase/tutorial/reallybigindex.html
That I would liked all downloaded. Would anyone know how this would go?
I have a list of links here: https://docs.oracle.com/javase/tutorial/reallybigindex.html
That I would liked all downloaded. Would anyone know how this would go?
You can download Wget for Windows and use that from cmd.exe:
wget -r -l 2 https://docs.oracle.com/javase/tutorial/reallybigindex.html
If you also want the images and CSS files for those pages, then add -p and also -k to change the links in the HTML so you can browse these pages offline.
This tutorial has some screenshots which may help.
The value of -l 2 will get that first page, and all the pages that it links to. You can increase the number to get deeper pages, but I fear it will follow some links away from the tutorials and around the Oracle website.
Alternatively you could try VisualWget which has a UI!
Alternatively you might like to download the tutorials in ebook form.
How can I download a website and the links it references
I have a list of links here: https://docs.oracle.com/javase/tutorial/reallybigindex.html
Instead of downloading all the links in the "The Really Big Index" it is easier to just Download the latest Java Tutorials bundle.
It is available in a variety of formats - zip, epub and mobi.
tutorial.zip includes reallybigindex.html and all of the referenced files.
Here are the top level contents of the expanded zip file:
There are many ways to approach this. Not knowing your desired end product I can't be very specific.
I'll expand on Google Sheets (I use this for simple one time projects):
https://docs.oracle.com/javase/tutorial/reallybigindex.html=IMPORTXML(A1, "//a[@href]/text()")(this retrieves the text of the click)=IMPORTXML(A1, "//a[@href]/@href")(this retrieves the URL)The second parameter of the function is an xpath expression. You'll need to adjust those to get the result you want. There are many online xpath testers to help you do this.