is Text HTTP Content Type - Android Network

Android examples for Network:HTTP Content Type

Description

is Text HTTP Content Type

Demo Code


//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*/
}

Related Tutorials