I’m looking this site.
I can’t understand what this means:
private ArrayList<HashMap<String, String>> data;
Please, explain this to me.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Those are html entities:
Those characters have to be escaped in html because they are used to start and end html tags:
So the string you asked about, with html entities replaced, is:
Those html entities were left in the code snippet on the site you mentioned, most likely by mistake or else due to a bug in how that site escapes code snippets.