[
https://issues.apache.org/jira/browse/COMPRESS-114?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12868217#action_12868217
]
Helmut Minst commented on COMPRESS-114:
---------------------------------------
that's right, but the cast from byte to char is not a beautiful way.
String charsetName = "ISO-8859-1";
try {
result.append(new String(new byte[] { buffer[i] },
charsetName));
} catch (UnsupportedEncodingException e) {
result.append(new String(new byte[] { buffer[i] }));
}
where charsetName may be set via a system property or sth else by the customer
of commons compress.
> determine name for TarEntries with special characters in TarUtils.parseName
> ---------------------------------------------------------------------------
>
> Key: COMPRESS-114
> URL: https://issues.apache.org/jira/browse/COMPRESS-114
> Project: Commons Compress
> Issue Type: Bug
> Affects Versions: 1.0
> Environment: Windows/Suse
> Reporter: Helmut Minst
> Attachments: plusMinusForJIRA.tar
>
>
> if a tarfile contains files with special characters, the names of the tar
> entries are wrong.
> example:
> correct name:
> 0302-0601-3±±±F06±W220±ZB±LALALA±±±±±±±±±±CAN±±DC±±±04±060302±MOE.model
> name resolved by TarUtils.parseName:
> 0302-0101-3ᄆᄆᄆF06ᄆW220ᄆZBᄆHECKMODULᄆᄆᄆᄆᄆᄆᄆᄆᄆᄆECEᄆᄆDCᄆᄆᄆ07ᄆ060302ᄆDOERN.model
> please use:
> result.append(new String(new byte[] { buffer[i] }));
> instead of:
> result.append((char) buffer[i]);
> to solve this encoding problem.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.