6

I wanted to make a website downloader in Java, despite the existence of wget. So I made one. However, it's just in it's early stages. I'm open to making this took a little broader and upgrading how it downloads websites. GitHub: https://github.com/YoungCode26/...

Comments
  • 3
    I don't want to sound harsh but isn't it what Jsoup does? I mean you can Jsoup.connect("insert URL here");
    and have it conveniently downloaded and managed as a Document
  • 2
    @dontPanic No way! I'll look into JSoup then. Jeez I took on this project thinking no one had done it in Java.
  • 2
    @BitCoder sorry I ruined it for you :/
  • 2
    @dontPanic You didn't! I'm open to learning new things and from other devs. I'm moving on to an APK reverse engineering suite. I plan on using dex2jar
  • 1
    @dontPanic Jsoup is an HTML parser, which means you can easily extract needed elements from a site. OFC that requires to get the HTML first.
Add Comment