Browse Source

fix forbidden api issue

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1860160 13f79535-47bb-0310-9956-ffa450edef68
pull/154/head
PJ Fanning 5 years ago
parent
commit
66d813d444
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java

+ 1
- 1
src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java View File

@@ -450,7 +450,7 @@ public class MAPIMessage extends POIReadOnlyDocument {
if (headers != null && headers.length > 0) {
Pattern p = Pattern.compile("content-type:.*?charset=[\"']?([^;'\"]+)[\"']?", Pattern.CASE_INSENSITIVE);
for (String header : headers) {
if (header.toLowerCase().startsWith("content-type")) {
if (header.toLowerCase(LocaleUtil.getUserLocale()).startsWith("content-type")) {
Matcher m = p.matcher(header);
if (m.matches()) {
String encoding = m.group(1);

Loading…
Cancel
Save