1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A simple utility class which provides methods for file downloading using HTTP
* protocol.
*/
public class FileDownloader {
private static final Logger logger = LoggerFactory
.getLogger(FileDownloader.class);
/**
* Gets file size using an HTTP connection with GET method
*
* @return file size in bytes
* @throws IOException
*/
public static long getFileSize(String fileUrl) throws IOException {
URL oracle = new URL(fileUrl);
HttpURLConnection yc = (HttpURLConnection) oracle.openConnection();
populateDesktopHttpHeaders(yc);
long fileSize = 0;
try {
// retrieve file size from Content-Length header field
fileSize = Long.parseLong(yc.getHeaderField("Content-Length"));
} catch (NumberFormatException nfe) {
}
return fileSize;
}
/**
* Downloads a file from a given url and writes it to a file in current
* working directory
*
* @param urli
* Input file url
*
* @throws IOException
* ,MalformedURLException
*/
public static void downloadFile(String urli) throws IOException,
MalformedURLException {
String fileName = urli.substring(urli.lastIndexOf('/') + 1,
urli.length());
// download the file in the current working directory
File outFile = new File(fileName);
logger.debug("url file name: {}", fileName);
logger.debug("Output file path: {}", outFile.getAbsolutePath());
downloadFile(urli, outFile);
}
/**
* Downloads a file from a given url and writes it to a given File object
*
* @param urli
* Input file url
* @param outputFile
* The output file to write to
*
*/
public static void downloadFile(String urli, File outputFile)
throws IOException, MalformedURLException {
long startTime = System.currentTimeMillis();
// Get a connection to the URL and start up a buffered reader.
URL url = new URL(urli);
url.openConnection();
InputStream reader = url.openStream();
// Setup a buffered file writer to write out what we read from the
// website.
FileOutputStream writer = new FileOutputStream(outputFile);
byte[] buffer = new byte[153600];
long totalBytesRead = 0;
int bytesRead = 0;
while ((bytesRead = reader.read(buffer)) > 0) {
writer.write(buffer, 0, bytesRead);
// buffer = new byte[153600];
totalBytesRead += bytesRead;
// logger.debug("Downloaded {} Kb ", (totalBytesRead / 1024));
}
long endTime = System.currentTimeMillis();
logger.debug("Done. {} bytes read in : {} millseconds",
String.valueOf(totalBytesRead),
String.valueOf(endTime - startTime));
writer.close();
reader.close();
}
/**
* Downloads a file from a given url and writes it byte array
*
* @param urli
* Input file url
*
*
*/
public static byte[] downloadFileToArray(String urli) throws IOException,
MalformedURLException {
return downloadFileToArray(urli, 0, 0);
}
/**
* Downloads a file from a given url and writes it to a byte array
*
* @param urli
* Input file URL
* @param connectionTimeout
* the maximum time in milliseconds to wait while connecting
* @param readTimeout
* the read timeout in milliseconds, or 0 if reads never timeout
*
*
*/
public static byte[] downloadFileToArray(String urli,
int connectionTimeout, int readTimeout) throws IOException,
MalformedURLException {
long startTime = System.currentTimeMillis();
// Get a connection to the URL and start up a buffered reader.
URL url = new URL(urli);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
populateDesktopHttpHeaders(con);
con.setConnectTimeout(connectionTimeout);
con.setReadTimeout(readTimeout);
InputStream reader = con.getInputStream();
// Setup a buffered file writer to write out what we read from the
// website.
ByteArrayOutputStream writer = new ByteArrayOutputStream();
byte[] buffer = new byte[153600];
long totalBytesRead = 0;
int bytesRead = 0;
while ((bytesRead = reader.read(buffer)) > 0) {
writer.write(buffer, 0, bytesRead);
// buffer = new byte[153600];
totalBytesRead += bytesRead;
// logger.debug("Downloaded {} Kb ", (totalBytesRead / 1024));
}
long endTime = System.currentTimeMillis();
// write all bytes to buffer
buffer = writer.toByteArray();
// logger.debug(
// "Downloaded {}. {} bytes read in {} ",
// new Object[] { urli, String.valueOf(totalBytesRead),
// TimeUtils.getDuration(startTime, endTime) });
con.disconnect();
writer.close();
reader.close();
return buffer;
}
private static void populateDesktopHttpHeaders(URLConnection urlCon) {
// add custom header in order to be easily detected
urlCon.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0");
urlCon.setRequestProperty("Accept-Language",
"el-gr,el;q=0.8,en-us;q=0.5,en;q=0.3");
urlCon.setRequestProperty("Accept-Charset",
"ISO-8859-7,utf-8;q=0.7,*;q=0.7");
}
}
|