You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
when i want to resore backup file in workbench it give me this message unknown file encoding it say its not utf8
its work fine in macos but in windows it has this issue
how can i fix this issue
thanks
The text was updated successfully, but these errors were encountered:
i find the issue its from
FileOutputStream outputStream = new FileOutputStream( new FileOutputStream(sqlFolder + "/" + sqlFileName));
replace it to
OutputStreamWriter outputStream =new OutputStreamWriter(Files.newOutputStream(Paths.get(sqlFolder + "/" + sqlFileName)), StandardCharsets.UTF_8);
Hi
when i want to resore backup file in workbench it give me this message unknown file encoding it say its not utf8
its work fine in macos but in windows it has this issue
how can i fix this issue
thanks
The text was updated successfully, but these errors were encountered: