Parse a query string parameter to java object
问题 I have query string like that: ObjectGUId=1abcde&ObjectType=2&ObjectTitle=maximumoflife&Content=racroi&TimeStamp=2012-11-05T17:20:06.056 And I have Java Object: LogObject{ private String ObjectGUId; private String ObjectType; private String ObjectTitle; private String Content; private String TimeStamp; } So i want to parse this query string to this java Object. I've searched and read many question but not gotten correct answer yet. Show me what can solve this problem. 回答1: Etiquette You