[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[],[],null,["# Interface ObjectParser (2.0.0)\n\nVersion latestkeyboard_arrow_down\n\n- [2.0.0 (latest)](/java/docs/reference/google-http-client/latest/com.google.api.client.util.ObjectParser)\n- [1.47.1](/java/docs/reference/google-http-client/1.47.1/com.google.api.client.util.ObjectParser)\n- [1.46.3](/java/docs/reference/google-http-client/1.46.3/com.google.api.client.util.ObjectParser)\n- [1.45.3](/java/docs/reference/google-http-client/1.45.3/com.google.api.client.util.ObjectParser)\n- [1.44.2](/java/docs/reference/google-http-client/1.44.2/com.google.api.client.util.ObjectParser)\n- [1.43.2](/java/docs/reference/google-http-client/1.43.2/com.google.api.client.util.ObjectParser)\n- [1.42.3](/java/docs/reference/google-http-client/1.42.3/com.google.api.client.util.ObjectParser)\n- [1.41.8](/java/docs/reference/google-http-client/1.41.8/com.google.api.client.util.ObjectParser) \n\n public interface ObjectParser\n\nParses a data source into the specified data type.\n\nImplementations should normally be thread-safe.\n\nMethods\n-------\n\n### \\\u003cT\\\u003eparseAndClose(InputStream in, Charset charset, Class\\\u003cT\\\u003e dataClass)\n\n public abstract T \u003cT\u003eparseAndClose(InputStream in, Charset charset, Class\u003cT\u003e dataClass)\n\nParses the given input stream into a new instance of the the given data class of key/value\npairs and closes the input stream.\n\n### \\\u003cT\\\u003eparseAndClose(Reader reader, Class\\\u003cT\\\u003e dataClass)\n\n public abstract T \u003cT\u003eparseAndClose(Reader reader, Class\u003cT\u003e dataClass)\n\nParses the given reader into a new instance of the the given data class of key/value pairs and\ncloses the reader.\n\n### parseAndClose(InputStream in, Charset charset, Type dataType)\n\n public abstract Object parseAndClose(InputStream in, Charset charset, Type dataType)\n\nParses the given input stream into a new instance of the the given data type of key/value pairs\nand closes the input stream.\n\n### parseAndClose(Reader reader, Type dataType)\n\n public abstract Object parseAndClose(Reader reader, Type dataType)\n\nParses the given reader into a new instance of the the given data type of key/value pairs and\ncloses the reader."]]