https://bz.apache.org/bugzilla/show_bug.cgi?id=59889
Bug ID: 59889
Summary: Dashboard cannot display Japanese(and maybe also
Chinese) characters.
Product: JMeter
Version: 3.0
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Dashboard cannot display Japanese(and maybe also Chinese) characters.
This is because CHARSET is specified as "ISO8859-1" in CsvSampleReader.java.
It should be taken from SaveService.
CsvSampleReader.java
----
private static final String CHARSET = "ISO8859-1";
-> private static final String CHARSET = SaveService.getFileEncoding("UTF-8");
--
You are receiving this mail because:
You are the assignee for the bug.