You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Michael Glavassevich (JIRA)" <xe...@xml.apache.org> on 2012/12/18 15:32:12 UTC

[jira] [Updated] (XERCESJ-1598) XMLEntityManager.createOutputStream does not decode file URI properly

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

Michael Glavassevich updated XERCESJ-1598:
------------------------------------------

    Component/s: Serialization
    
> XMLEntityManager.createOutputStream does not decode file URI properly
> ---------------------------------------------------------------------
>
>                 Key: XERCESJ-1598
>                 URL: https://issues.apache.org/jira/browse/XERCESJ-1598
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: Serialization
>    Affects Versions: 2.11.0
>            Reporter: Vlad Arkhipov
>
> org.apache.xerces.impl.XMLEntityManager.createOutputStream does not decode file URIs. It uses getPathWithoutEscapes(String) but it does not decode 2-byte escape sequences properly (for international symbols).
> It may be better to get rid of this function at all. In org.apache.xerces.impl.XMLEntityManager.createOutputStream instead of
> File file = new File(getPathWithoutEscapes(url.getPath()));
> you may use
> File file = new File(url.toURI().getPath());
> which automatically decode the path in URI. Also constructing URL here is a bit overhead, URI is enough (you may convert it toURL if the protocol is not "file").

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: j-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: j-dev-help@xerces.apache.org