HTMLParser2 parser2 = new HTMLParser2();
HTMLDocument document = parser2.createDocument(file, null);
List<String> attrValues = new ArrayList<String>();
NodeIterator iterator = document.getRoot().iterator();
while(iterator.hasNext()) {
HTMLNode node = iterator.next();
if(node.isNode(nodeName)) {
Attributes attributes = node.getAttributes();
Attribute attribute = attributes.get(attrName);
if(attribute == null) continue;
attrValues.add(attribute.getValue());