|
Reader reader = new InputStreamReader(bufferedSource.inputStream()); |
this line maybe
Reader reader = new InputStreamReader(bufferedSource.inputStream(),StandardCharsets.UTF_8);
I feel that the character encoding should be specified as UTF-8.
Because I found that the default encoding is GBK when the encoding is not specified on our windows server, the returned query Chinese characters appear garbled.
influxdb-client-java/client-core/src/main/java/com/influxdb/query/internal/FluxCsvParser.java
Line 119 in 97eea4a
this line maybe
Reader reader = new InputStreamReader(bufferedSource.inputStream(),StandardCharsets.UTF_8);I feel that the character encoding should be specified as UTF-8.
Because I found that the default encoding is GBK when the encoding is not specified on our windows server, the returned query Chinese characters appear garbled.