You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Jirka (JIRA)" <ji...@apache.org> on 2008/06/17 19:25:45 UTC

[jira] Reopened: (WICKET-1704) ResourceStreamRequestTarget.configure set wrong ContentLength for non-ascii characters

     [ https://issues.apache.org/jira/browse/WICKET-1704?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jirka reopened WICKET-1704:
---------------------------


Thanks for fast fix. But it isnt correct, because array of bytes depends on charset.
Better is

               if (getCharset() != null) {
                    try {
                        return getString().getBytes(getCharset().name()).length;
                    } catch (UnsupportedEncodingException e) {
                        throw someException...
                    }
                } else {
                    return getString().getBytes().length;
                }

> ResourceStreamRequestTarget.configure set wrong ContentLength for non-ascii characters
> --------------------------------------------------------------------------------------
>
>                 Key: WICKET-1704
>                 URL: https://issues.apache.org/jira/browse/WICKET-1704
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>            Reporter: Jirka
>            Assignee: Igor Vaynberg
>             Fix For: 1.3.4, 1.4-M3
>
>
> CharSequence export = DataBase.getInstance().exportDiscounts();
> ResourceStreamRequestTarget target = new ResourceStreamRequestTarget(new StringResourceStream(export, "text/plain"));
> target.setFileName("discounts.csv");
> RequestCycle.get().setRequestTarget(target);
> If export contains non-ascii characters. e.g. ěščřžýáíé, is wrong set up the ContentLength of the response. ContentLength is set up with number of characters, but must be set up with number of bytes. Response on output is not all.
> Be sure that byte[].length != "čřžýá".length()
> ResourceStreamRequestTarget.java method configure:
> // WICKET-473 Allow IResourceStream.length() to return -1
> 		long len = resourceStream.length();
> 		if (len >= 0)
> 		{
> 			// and the content length
> 			response.setContentLength(len);
> 		}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.