0

If so, how can I do that?

I'm trying to write a method that takes a content-type and returns whether it is a JSON file or not.

4

1 回答 1

1

这是一个函数,它从 HTTP 请求中接收内容类型字符串,如果内容类型是 JSON 类型,则返回 TRUE,否则返回 FALSE。

public static boolean isJsonContentType(String contentType) {
    return (contentType.equals("application/json"));
}
于 2013-09-20T21:22:53.517 回答