fix encoding error in ZUGFeRDInvoiceImporter.java

fix encoding error when JVM has a standard encoding other than UTF-8
This commit is contained in:
asdf00000
2025-07-24 10:16:18 +02:00
committed by GitHub
parent 0f07baa08e
commit d3254b0951

View File

@@ -1172,7 +1172,7 @@ public class ZUGFeRDInvoiceImporter {
bomlessData = rawXML;
}
return new String(bomlessData);
return new String(bomlessData, StandardCharsets.UTF_8);
}
/***