Compare commits

..

No commits in common. "a375b8ead1db412febf3c9e3f1af5cbcf90d7a7f" and "49d20396b29a7f6844f8f95717d9cb3b3701ed35" have entirely different histories.

View File

@ -244,9 +244,9 @@ public class DatabaseConnector {
// 8: es_urltitle_translate
String esUrltitleTranslate = item.getEsUrltitleTranslate();
if (esUrltitleTranslate != null && esUrltitleTranslate.length() > 10000) {
row.createCell(8).setCellValue(esUrltitleTranslate.substring(0, 10000));
row.createCell(7).setCellValue(esUrltitleTranslate.substring(0, 10000));
} else {
row.createCell(8).setCellValue(esUrltitleTranslate != null ? esUrltitleTranslate : "");
row.createCell(7).setCellValue(esUrltitleTranslate != null ? esUrltitleTranslate : "");
}
// 9: esVideo
@ -341,7 +341,7 @@ public class DatabaseConnector {
}
}
return String.join(",", filenames);
return String.join(";", filenames);
} catch (Exception e) {
// 如果解析失败返回空或原始内容根据需求
return ""; // 或者 return jsonStr; 用于调试