arturobernalg commented on code in PR #232: URL: https://github.com/apache/jspwiki/pull/232#discussion_r1186746895
########## jspwiki-util/src/main/java/org/apache/wiki/util/Serializer.java: ########## @@ -89,7 +89,7 @@ public static String serializeToBase64(final Map< String, Serializable > map ) t // Transform to Base64-encoded String final byte[] result = Base64.getEncoder().encode( bytesOut.toByteArray() ); - return new String( result ) ; + return new String( result, StandardCharsets.UTF_8 ) ; Review Comment: changed ########## jspwiki-util/src/main/java/org/apache/wiki/util/FileUtil.java: ########## @@ -108,8 +108,8 @@ public static String runSimpleCommand( final String command, final String direct final StringBuilder result = new StringBuilder(); final Process process = Runtime.getRuntime().exec( command, null, new File( directory ) ); - try( final BufferedReader stdout = new BufferedReader( new InputStreamReader( process.getInputStream() ) ); - final BufferedReader stderr = new BufferedReader( new InputStreamReader( process.getErrorStream() ) ) ) { + try( final BufferedReader stdout = new BufferedReader( new InputStreamReader( process.getInputStream(), StandardCharsets.UTF_8 ) ); Review Comment: changed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@jspwiki.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org