Commit 7c5ed4af authored by Vladislav Kiselev's avatar Vladislav Kiselev

Запиcь в UTF8.

parent 92827ce4
......@@ -249,7 +249,9 @@ public class Solver {
if (isResultsInOutput) {
try (FileWriter res = new FileWriter(solverResults)) {
res.write(output);
for (byte b : output.getBytes("UTF8")) {
res.write(b);
}
}
interpreter.accept(task, solverResults);
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment