यदि समापन बिंदु वास्तव में .xls फ़ाइल का एक सीधा लिंक है, तो आप डाउनलोडिंग को संभालने के लिए निम्नलिखित कोड आज़मा सकते हैं:
public static boolean download(final File output, final String source) {
try {
if (!output.createNewFile()) {
throw new RuntimeException("Could not create new file!");
}
URL url = new URL(source);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// Comment in the code in the following line in case the endpoint redirects instead of it being a direct link
// connection.setInstanceFollowRedirects(true);
connection.setRequestProperty("AUTH-KEY-PROPERTY-NAME", "yourAuthKey");
final ReadableByteChannel rbc = Channels.newChannel(connection.getInputStream());
final FileOutputStream fos = new FileOutputStream(output);
fos.getChannel().transferFrom(rbc, 0, 1 << 24);
fos.close();
return true;
} catch (final Exception e) {
e.printStackTrace();
}
return false;
}
तुम सब करना चाहिए क्या करने की जरूरत प्रमाणीकरण टोकन के लिए उचित नाम की स्थापना की और में भरने है।
उदाहरण उपयोग:
download(new File("C:\\output.xls"), "http://www.website.com/endpoint");