目前,我正在通过hack来检测text / html或text / plain mime类型,它会注意以#开头和结尾的结果并使其成为html结果。但现在我也想检测乳胶mime类型,这个hack已经在npt工作了,但我无法找出创建mime类型的更好方法。这是我目前的代码:
private void method(String code) {
HashMap<String, String> map3 = new HashMap<>();
if(code != null){
boolean resultHtml = code.startsWith("<html>") && code.endsWith("</html>");
map3.put(resultHtml ? "text/html" : "text/plain", code);
}
}