@@ -60,21 +60,21 @@ public static HttpURLConnection downloadFile(final String fromUrl, final File to
60
60
*
61
61
* @param fromUrl The URL from which to download.
62
62
* @param toFile The destination {@link File}.
63
- * @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
63
+ * @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
64
64
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
65
65
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
66
66
* timeout.
67
- * @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
68
- * referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
67
+ * @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
68
+ * resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
69
69
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
70
70
* timeout.
71
71
* @param options Options specifying how the download should be done.
72
72
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
73
73
* @throws IOException If an I/O error has occurred.
74
74
* @throws NullPointerException If the provided {@code fromUrl}, {@code toFile}, or {@code options} is null.
75
75
*/
76
- public static HttpURLConnection downloadFile (final String fromUrl , final File toFile , final int connectTimeout , final int readTimeout , final CopyOption ... options ) throws IOException {
77
- return downloadFile (new URL (fromUrl ), toFile , connectTimeout , readTimeout , options );
76
+ public static HttpURLConnection downloadFile (final String fromUrl , final File toFile , final int connectTimeoutMs , final int readTimeoutMs , final CopyOption ... options ) throws IOException {
77
+ return downloadFile (new URL (fromUrl ), toFile , connectTimeoutMs , readTimeoutMs , options );
78
78
}
79
79
80
80
/**
@@ -100,22 +100,22 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
100
100
*
101
101
* @param fromUrl The {@link URL} from which to download.
102
102
* @param toFile The destination {@link File}.
103
- * @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
103
+ * @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
104
104
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
105
105
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
106
106
* timeout.
107
- * @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
108
- * referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
107
+ * @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
108
+ * resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
109
109
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
110
110
* timeout.
111
111
* @param options Options specifying how the download should be done.
112
112
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
113
113
* @throws IOException If an I/O error has occurred.
114
114
* @throws NullPointerException If {@code fromUrl}, {@code toFile}, or {@code options} is null.
115
- * @throws IllegalArgumentException If the {@code connectTimeout } or {@code readTimeout } parameter is negative.
115
+ * @throws IllegalArgumentException If the {@code connectTimeoutMs } or {@code readTimeoutMs } parameter is negative.
116
116
*/
117
- public static HttpURLConnection downloadFile (final URL fromUrl , final File toFile , final int connectTimeout , final int readTimeout , CopyOption ... options ) throws IOException {
118
- return downloadFile (fromUrl , toFile , connectTimeout , readTimeout , true , options );
117
+ public static HttpURLConnection downloadFile (final URL fromUrl , final File toFile , final int connectTimeoutMs , final int readTimeoutMs , CopyOption ... options ) throws IOException {
118
+ return downloadFile (fromUrl , toFile , connectTimeoutMs , readTimeoutMs , true , options );
119
119
}
120
120
121
121
/**
@@ -125,23 +125,23 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
125
125
*
126
126
* @param fromUrl The {@link URL} from which to download.
127
127
* @param toFile The destination {@link File}.
128
- * @param connectTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
128
+ * @param connectTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
129
129
* resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
130
130
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
131
131
* timeout.
132
- * @param readTimeout Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource
133
- * referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
132
+ * @param readTimeoutMs Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the
133
+ * resource referenced by the {@link URLConnection} to {@code fromUrl}. If the timeout expires before the connection can be
134
134
* established, a {@link java.net.SocketTimeoutException} is raised. A timeout of zero is interpreted as an infinite
135
135
* timeout.
136
136
* @param followRedirects Whether HTTP 301, HTTP 302, or HTTP 303 redirects should be followed.
137
137
* @param options Options specifying how the download should be done.
138
138
* @return The <b>closed</b> {@link HttpURLConnection} that was used to download the file.
139
139
* @throws IOException If an I/O error has occurred.
140
140
* @throws NullPointerException If {@code fromUrl}, {@code toFile}, or {@code options} is null.
141
- * @throws IllegalArgumentException If the {@code connectTimeout } or {@code readTimeout } parameter is negative.
141
+ * @throws IllegalArgumentException If the {@code connectTimeoutMs } or {@code readTimeoutMs } parameter is negative.
142
142
*/
143
- public static HttpURLConnection downloadFile (final URL fromUrl , final File toFile , final int connectTimeout , final int readTimeout , final boolean followRedirects , CopyOption ... options ) throws IOException {
144
- final HttpURLConnection connection = (HttpURLConnection )(followRedirects ? URLConnections .checkFollowRedirect (fromUrl .openConnection (), (final HttpURLConnection c ) -> beforeDownloadFile (c , connectTimeout , readTimeout , toFile )) : fromUrl .openConnection ());
143
+ public static HttpURLConnection downloadFile (final URL fromUrl , final File toFile , final int connectTimeoutMs , final int readTimeoutMs , final boolean followRedirects , CopyOption ... options ) throws IOException {
144
+ final HttpURLConnection connection = (HttpURLConnection )(followRedirects ? URLConnections .checkFollowRedirect (fromUrl .openConnection (), (final HttpURLConnection c ) -> beforeDownloadFile (c , connectTimeoutMs , readTimeoutMs , toFile )) : fromUrl .openConnection ());
145
145
try {
146
146
if (connection .getResponseCode () == HttpURLConnection .HTTP_OK ) {
147
147
try (final InputStream in = connection .getInputStream ()) {
@@ -162,9 +162,9 @@ public static HttpURLConnection downloadFile(final URL fromUrl, final File toFil
162
162
}
163
163
}
164
164
165
- private static void beforeDownloadFile (final HttpURLConnection connection , final int connectTimeout , final int readTimeout , final File toFile ) {
166
- connection .setConnectTimeout (connectTimeout );
167
- connection .setReadTimeout (readTimeout );
165
+ private static void beforeDownloadFile (final HttpURLConnection connection , final int connectTimeoutMs , final int readTimeoutMs , final File toFile ) {
166
+ connection .setConnectTimeout (connectTimeoutMs );
167
+ connection .setReadTimeout (readTimeoutMs );
168
168
if (toFile .exists ())
169
169
connection .setIfModifiedSince (toFile .lastModified ());
170
170
}
0 commit comments