Frédérik Bilhaut created COMPRESS-325:
-----------------------------------------

             Summary: Unable to uncompress dbPedia files
                 Key: COMPRESS-325
                 URL: https://issues.apache.org/jira/browse/COMPRESS-325
             Project: Commons Compress
          Issue Type: Bug
    Affects Versions: 1.10
            Reporter: Frédérik Bilhaut


Sample code :

URL url = new 
URL("http://downloads.dbpedia.org/current/core-i18n/en/labels_en.nt.bz2";);
                        InputStream input = new 
BZip2CompressorInputStream(url.openConnection().getInputStream());
                        BufferedReader reader = new BufferedReader(new 
InputStreamReader(input, "US-ASCII"));
                        
                        int count = 0;
                        for(String line = reader.readLine(); line != null; line 
= reader.readLine())
                        {
                                if(++count > 10000) break;
                                else System.out.println(count + ": " + line);
                        }

It stops at line 7801 (EOF).





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to