How do I retrieve the contents of a file and assign it to a string?
The file is located on a https server and the content is plain text.
|
How do I retrieve the contents of a file and assign it to a string? The file is located on a https server and the content is plain text. |
|||
|
|
|
Look at the URL Class in the Java API. Pretty sure all you need is there. |
|||
|
|
|
I suggest Apache HttpClient: easy, clean code and it handles the character encoding sent by the server -- something that
|
|||||
|
|
First download the file from the server using the
Then read the downloaded file using
|
|||||||||||
|
|
Best answer I found:
|
|||
|
|