Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read a zip file from a remote URL without extracting it

Tags:

java

I am trying to directly read a zip file from a Remote URL I have tried this way

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipInputStream;

public class Utils {
    public static void main(String args[]) throws Exception {
        String ftpUrl = "http://wwwccc.zip";
        URL url = new URL(ftpUrl);
        unpackArchive(url);
    }

    public static void unpackArchive(URL url) throws IOException {
        String ftpUrl = "http://www.vvvv.xip";
        File zipFile = new File(url.toString());
        ZipFile zip = new ZipFile(zipFile);
        InputStream in = new BufferedInputStream(url.openStream(), 1024);
        ZipInputStream zis = new ZipInputStream(in);
        ZipEntry entry;
        while ((entry = zis.getNextEntry()) != null) {
            System.out.println("entry: " + entry.getName() + ", "
                    + entry.getSize());
            BufferedReader bufferedeReader = new BufferedReader(
                    new InputStreamReader(zip.getInputStream(entry)));
            String line = bufferedeReader.readLine();
            while (line != null) {
                System.out.println(line);
                line = bufferedeReader.readLine();
            }
            bufferedeReader.close();
        }
    }
}

I am getting Exception as

Exception in thread "main" java.io.FileNotFoundException: http:\www.nseindia.com\content\historical\EQUITIES\2015\NOV\cm03NOV2015bhav.csv.zip (The filename, directory name, or volume label syntax is incorrect)
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(Unknown Source)
    at java.util.zip.ZipFile.<init>(Unknown Source)
    at java.util.zip.ZipFile.<init>(Unknown Source)
    at Utils.unpackArchive(Utils.java:30)
    at Utils.main(Utils.java:19)

Where as the URL of zip file is working fine when running from a browser .

like image 330
Pawan Avatar asked Nov 03 '15 15:11

Pawan


2 Answers

File class is not designed to work with remote files. It only supports files that are available on a local file system. To open a stream on a remote file, you can use HttpURLConnection.

Call getInputStream() on an HttpURLConnection instance to get an input stream that you can process further.

Example:

String url= "http://www.nseindia.com/content/historical/EQUITIES/2015/NOV/cm03NOV2015bhav.csv.zip";
InputStream is = new URL(url).openConnection().getInputStream();
like image 196
david a. Avatar answered Sep 30 '22 20:09

david a.


None of the above has worked for me.

What did work like a charm, is this:

InputStream inputStream = new URL( urlString ).openStream();
like image 35
Mike Nakis Avatar answered Sep 30 '22 19:09

Mike Nakis