呼叫天氣介面
//class
package cn.jun.untils;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.junit.Test;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class WeatherUtil {
/**
* 對伺服器端返回的XML檔案流進行解析
*
* @param city 使用者輸入的城市名稱
* @return 字串 用#分割
*/
public String getWeather(String city) {
try {
//使用Dom解析
Document doc;
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
DocumentBuilder db = dbf.newDocumentBuilder();
//獲取呼叫介面後返回的流
InputStream is = getSoapInputStream(city);
doc = db.parse(is);
//xml的元素標籤是"<string>值1</string><string>值2</string>……"
NodeList nl = doc.getElementsByTagName("string");
StringBuffer sb = new StringBuffer();
for (int count = 0; count < nl.getLength(); count++) {
Node n = nl.item(count);
if(n.getFirstChild().getNodeValue().equals("查詢結果為空!")) {
sb = new StringBuffer("#") ;
break ;
}
//解析並以"#"為分隔符,拼接返回結果
sb.append(n.getFirstChild().getNodeValue() + "#");
}
is.close();
return sb.toString();
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/*
* 使用者把SOAP請求傳送給伺服器端,並返回伺服器點返回的輸入流
*
* @param city 使用者輸入的城市名稱
* @return 伺服器端返回的輸入流,供客戶端讀取
* @throws Exception
* @備註:有四種請求頭格式1、SOAP 1.1; 2、SOAP 1.2 ; 3、HTTP GET; 4、HTTP POST
* 參考---》http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?op=getWeatherbyCityName
*/
private InputStream getSoapInputStream(String city) throws Exception {
try {
//獲取請求規範
String soap = getSoapRequest(city);
if (soap == null) {
return null;
}
//呼叫的天氣預報webserviceURL
URL url = new URL("http://www.webxml.com.cn/WebServices/WeatherWebService.asmx");
URLConnection conn = url.openConnection();
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestProperty("Content-Length", Integer.toString(soap.length()));
conn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
//呼叫的介面方法是“getWeatherbyCityName”
conn.setRequestProperty("SOAPAction", "http://WebXml.com.cn/getWeatherbyCityName");
OutputStream os = conn.getOutputStream();
OutputStreamWriter osw = new OutputStreamWriter(os, "utf-8");
osw.write(soap);
osw.flush();
osw.close();
//獲取webserivce返回的流
InputStream is = conn.getInputStream();
return is;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/*
* 獲取SOAP的請求頭,並替換其中的標誌符號為使用者輸入的城市
*
* @param city: 使用者輸入的城市名稱
* @return 客戶將要傳送給伺服器的SOAP請求規範
* @備註:有四種請求頭格式1、SOAP 1.1; 2、SOAP 1.2 ; 3、HTTP GET; 4、HTTP POST
* 參考---》http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?op=getWeatherbyCityName
* 本文采用:SOAP 1.1格式
*/
private String getSoapRequest(String city) {
StringBuilder sb = new StringBuilder();
sb.append("<?xml version=\"1.0\" encoding=\"utf-8\"?>"
+ "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "
+ "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" "
+ "xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
+ "<soap:Body><getWeatherbyCityName xmlns=\"http://WebXml.com.cn/\">"
+ "<theCityName>"
+ city
+ "</theCityName></getWeatherbyCityName>"
+ "</soap:Body></soap:Envelope>");
return sb.toString();
}
//測試
@Test
public void test(){
//new WeatherUtil().getWeather("貴陽");
//System.out.println(new WeatherUtil().getWeather("貴陽").toString());
WeatherUtil weath=new WeatherUtil();
//檢視城市:貴陽
String weather=weath.getWeather("貴陽");
String len[]=weather.split("#");
for(int i=0;i<len.length-1;i++){
System.out.println(len[i]);
}
System.out.println("================");
System.out.println("城市:"+len[1]);
System.out.println("天氣:"+len[5]);
}
}
//================================result
貴州
貴陽
57816
57816.jpg
2018/11/12 15:24:51
10℃/14℃
11月12日 陰
東北風轉東風小於3級
2.gif
2.gif
今日天氣實況:氣溫:10℃;風向/風力:北風 2級;溼度:89%;紫外線強度:最弱。空氣質量:較差。
紫外線指數:最弱,輻射弱,塗擦SPF8-12防晒護膚品。
健臻·血糖指數:不易波動,天氣條件好,血糖不易波動,可適時進行戶外鍛鍊。
穿衣指數:較冷,建議著厚外套加毛衣等服裝。
洗車指數:較適宜,無雨且風力較小,易保持清潔度。
空氣汙染指數:較差,氣象條件較不利於空氣汙染物擴散。。
11℃/15℃
11月13日 小雨
東南風轉南風小於3級
7.gif
7.gif
11℃/19℃
11月14日 小雨轉中雨
南風轉北風小於3級
7.gif
8.gif