获取字符串中的特定单词

时间:2014-04-20 02:11:37

标签: java html string

您好我试图从一个巨大的字符串中获取信息,问题是我需要在标记之后提取一些单词。我认为这个例子会更好地解释它。我发送一个代码到一个网页,它返回一个像这样的字符串:

String CodeISend= "JFK";
//The process of getting the returned String isn't important right now

String returnedCode="{"airport":{"fs":"JFK","iata":"JFK","icao":"KJFK","faa":"JFK","name":"John F. Kennedy International Airport","street1":"JFK Airport","city":"New York"" 

我需要提取机场的名称并将其保存到单独的字符串中。但我真的不知道如何获得信息" name":感谢帮助!

1 个答案:

答案 0 :(得分:0)

您希望将此项从json转换为地图并使用" name"来查找您的机场作为关键:map.get(key)

见这个讨论: Convert Json to Map

并在此处了解有关地图的更多信息: http://docs.oracle.com/javase/tutorial/collections/interfaces/map.html