[
https://issues.apache.org/jira/browse/COMPRESS-325?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Frédérik Bilhaut updated COMPRESS-325:
--------------------------------------
Summary: Unable to uncompress bzip2 dbPedia files (was: Unable to
uncompress dbPedia files)
> Unable to uncompress bzip2 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)