You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2021/09/16 21:41:31 UTC

[Bug 65572] Check for existing Sheet fails for names > 31 characters

https://bz.apache.org/bugzilla/show_bug.cgi?id=65572

PJ Fanning <fa...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

--- Comment #1 from PJ Fanning <fa...@yahoo.com> ---
the current XSSFWorkbook has this code

```
        // YK: Mimic Excel and silently truncate sheet names longer than 31
characters
        if(sheetname.length() > 31) {
            sheetname = sheetname.substring(0, 31);
        }
```

I'll try removing this

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org