使用的maven库:
<dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>77.1</version>
</dependency>
示例代码:
import com.ibm.icu.text.CharsetDetector;
import com.ibm.icu.text.CharsetMatch;
import java.io.*;
public static String detectFileCharset(InputStream inputStream) {
try {
BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
CharsetDetector detector = new CharsetDetector();
detector.setText(bufferedInputStream);
CharsetMatch match = detector.detect();
return match.getName();
} catch (IOException e) {
e.printStackTrace();
return "";
}
}