Android examples for Network:HTTP Content Type
is Ogg HTTP Content Type
//package com.java2s; public class Main { public static boolean isOggContentType(String contentType) { return contentType.equals("application/ogg") || contentType.equals("application/x+ogg"); }//from www . ja v a2 s. c o m }