Я пишу простую программу, которая должна переводить страницу Excel с иврита на английский.
для этого код читает содержимое каждой ячейки и сравнивает его с картой, которая получает информацию из простого CSV-файла.
Запуская программу из IntelliJ, программа работает отлично и делает то, что должна, однако, скомпилировав ее в банку, программа этого не делает.
//Code for loading the csv contents to a map
private static Map<String,String> getLocalization(String pathToJar) {
String path = null;
path = pathToJar + "localization.csv";
String line = "";
HashMap<String, String> list = new HashMap<>();
try {
BufferedReader br = new BufferedReader(new FileReader(path));
while ((line = br.readLine()) != null) {
// use comma as separator
String[] array = line.split(",");
list.put(array[0], array[1]);
}
} catch (IOException e) {
e.printStackTrace();
}
return list;
}
//Code for loading an Excel file and translating it
private static boolean updateExcel(Map<String,String> translation, String filepath, String pathToJar) {
String path = pathToJar + "temp\\week.xlsx";
//Read Excel document first
FileInputStream input_document = null;
XSSFWorkbook my_xlsx_workbook = null;
try {
input_document = new FileInputStream(new File(path));
// convert it into a POI object
my_xlsx_workbook = new XSSFWorkbook(input_document);
} catch (IOException e) {
e.printStackTrace();
}
// Read excel sheet that needs to be updated
XSSFSheet my_worksheet = null;
if (my_xlsx_workbook != null) {
my_worksheet = my_xlsx_workbook.getSheetAt(0);
}
for (Row cells : my_worksheet) {
String name = "";
String shortCode = "";
//Get the row object
Row row = cells;
//Every row has columns, get the column iterator and iterate over them
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext()) {
//Get the Cell object
Cell cell = cellIterator.next();
//check the cell type and process accordingly
switch (cell.getCellType()) {
case STRING:
for (Map.Entry<String, String> entry : translation.entrySet()) {
if (cell.getStringCellValue().contains(entry.getKey())) {
cell.setCellValue(entry.getValue());
}
}
break;
}
}
}
my_worksheet.autoSizeColumn(1);
FileOutputStream outFile = null;
try {
if (input_document != null) {
input_document.close();
}
File finishedFile = new File(path);
outFile = new FileOutputStream(finishedFile);
my_xlsx_workbook.write(outFile);
outFile.close();
finishedFile.renameTo(new File(filepath));
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
CSV-файл выглядит примерно так:
иврит, английское слово
иврит, английское слово
иврит, английское слово
...
Несколько вещей, которые я проверял:
1. Карта читается из файла (попытался закодировать ее в UTF-8)
2. Настройки IntelliJ установлены на UTF-8
Я считаю, что это проблема с кодировкой, при выводе ключей карты в ячейки Excel вместо слов отображается куча специальных символов.
Если есть какая-либо другая информация, пожалуйста, сообщите мне, и спасибо заранее.