You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Frédérik Bilhaut (JIRA)" <ji...@apache.org> on 2015/10/12 14:17:05 UTC

[jira] [Created] (COMPRESS-325) Unable to uncompress dbPedia files

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)