user793623
user793623

Reputation:

Downloading a JNLP File in Java

I want to download a JNLP file from a given link. I already know how to go through the authentication process. How can I download that file? Eventually I want to create the following method.

downloadJNLP(String url, String path){
   ...
}

Upvotes: 0

Views: 2359

Answers (1)

Joel
Joel

Reputation: 3454

Just like you would download any file: reading URL in Java

Upvotes: 1

Related Questions