अपना खुद का FileTypeDetector
install स्थापित करने के लिए आप पहले अपना खुद का कार्यान्वयन बनाएं:
public class MyFileTypeDetector extends java.nio.file.spi.FileTypeDetector {
public String probeContentType(Path path) throws IOException {
return ...
}
}
फिर दूसरा आप एक फ़ाइल जोड़ें /META-INF/services/java.nio.file.spi.FileTypeDetector
जार के लिए जिसमें आपका कार्यान्वयन शामिल है:इसकी सामग्री आपके कार्यान्वयन का योग्य वर्ग नाम है:
org.example.MyFileTypeDetector