diff options
author | Javen O'Neal <onealj@apache.org> | 2017-02-08 08:29:18 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2017-02-08 08:29:18 +0000 |
commit | d5724474e6169b34919c36b0f319ebd9254e5c39 (patch) | |
tree | 6ff9ab72eea07aab0d3bba83e21eba309b2f6741 /build.xml | |
parent | 9ebbb3d7270a600718d4aae748acc6fa2c925b0e (diff) | |
download | poi-d5724474e6169b34919c36b0f319ebd9254e5c39.tar.gz poi-d5724474e6169b34919c36b0f319ebd9254e5c39.zip |
bug 59227: parse dates formatted in Japanese or Chinese. Change javac source encoding from ASCII to UTF-8 (same as build.gradle). Patch from jzhao. This closes #48 on Github.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1782119 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ under the License. <property name="org.apache.poi.util.POILogger" value="org.apache.poi.util.NullLogger"/> <!-- issue warnings if source code contains unmappable characters for encoding ASCII --> - <property name="java.source.encoding" value="ASCII"/> + <property name="java.source.encoding" value="UTF-8"/> <scriptdef name="propertyreset" language="javascript" description="Allows to assign @{property} new value"> |