Android examples for Network:HTTP Content Type
is Text HTTP Content Type
//package com.java2s; public class Main { public static boolean isTextContentType(String contentType) { return contentType.equals("text/plain"); }/*from w ww . j a va2s . co m*/ }