这个问题在这里已经有答案了:
如何比较java中的字符串(23个答案)
四天前关门了。
在做作业时,我遇到了一个相当奇怪的错误,无法找到为什么每次都会清空hashmap。
我不是在要求一个解决方案的命名分配我只是需要帮助这个hashmap。
所以我要做的是用saxapi读取rss提要,并将每个匹配项保存到名为“results”的hashmap中。第二个hashmap用于存储我正在读取的当前项。
public class SAX extends DefaultHandler{
HashMap<Integer, HashMap<Integer,String>> results = new HashMap<Integer, HashMap<Integer, String>>();
HashMap<Integer, String> current_item = new HashMap<Integer,String>();
int flag = 0;
String[] filter = {"Corona"};
String current = "";
int cnt_results, cnt_item = 0;
public static void main(String[]args) throws ParserConfigurationException, SAXException, IOException {
Init of the Sax Stuff here. This is normal stuff.
But i use the SAX Class as a Handler.
}
public void startDocument() {
System.out.println("Started the RSS Feed...");
}
public void endDocument() {
for(int i = 0; i<this.results.size();++i) {
Map<Integer,String> map = this.results.get(i);
for(int i2 = 0; i2<map.size();++i2) {
System.out.println(map.get(i2));
}
}
System.out.println("Seems like we hit the end.");
}
public void startElement(String uri,String localName, String qName, Attributes attributes) throws SAXException {
if(localName == "item") {
flag = 1;
}
}
public void endElement(String uri, String localName, String qName) throws SAXException {
current_item.put(cnt_item, current);
cnt_item++;
// Filters if description contains one of the Keywords
if(localName == "description") {
for(int i = 0; i<filter.length;++i) {
if(current.contains(filter[i])) {
flag = 2;
break;
}
}
}
if(localName == "item") {
if(flag == 2) {
if(this.results.containsValue(current_item)) {
;
}else {
this.results.put(cnt_results, current_item);
cnt_results++;
}
}
flag = 0;
cnt_item = 0;
current_item.clear();
}
}
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
}
public void characters(char[] ch, int start, int length) throws SAXException{
current = new String(ch,start,length);
}
}
然后,读者应该浏览rss提要,找到每个包含过滤词描述的条目,并将它们保存到结果图中。
当试图读取这些保存的结果时,我只得到了空行。
也许这不是最好的方式来表达它的意思,所以我给了你全部的代码。
很高兴你的帮助。谢谢!
1条答案
按热度按时间iqjalb3h1#
localName == "item"
localName == "description"
这将比较引用标识。就像在,"item" == "item"
是假的。你想要什么"item".equals(localName)
比较字符串内容。current_item.clear();
java是基于引用的。current_item
不是hashmap。这是Map的参考。你的results
hashmap还存储引用,而不是Map。就像藏宝图一样:一切都是一张通往宝藏的Map,而不是宝藏。.
是:跟着Map往下挖。所以,current_item.clear()
跟着Map往下挖,然后把你找到的宝藏里的东西毁掉。你的results
hashmap有自己的藏宝图副本,但它会导致相同的宝藏,所以你可能不想要这个。尝试current_item = new HashMap<>();
. 而不是按照Map和破坏宝藏,这将创建一个新的宝藏,埋在沙子里,并更新您的Map(而不是任何副本,这张Map仍然是他们原来的)指向新埋藏的宝藏。