Home> php教程> php手册> body text

National weather forecast interface call example

WBOY
Release: 2016-10-12 09:50:01
Original
1130 people have browsed it

JAVA-based national weather forecast interface calling example
step1: Select the interface "National Weather Forecast Interface" illustrated in this article url: https://www.juhe.cn/docs/api/id/39/aid/87
step2: Each interface needs to pass in a parameter key, which is equivalent to the user's token, so in the first step you need to apply for a key
step3: Read the documentation!!! Students who have studied Java all know that when we don’t understand the intention and ideas of a class or method, we can check the documentation. This is no exception, and for students who are not particularly good at English Fortunately for me, the documents on the aggregation website are all in Chinese, which should be much easier than reading the English documents in the Java source code.
There are six sub-interfaces under the National Weather Forecast interface. Open the first interface link and read the document and find that you need to pass in a city name or city ID parameter. We can obtain this parameter through the sixth sub-interface (the call of parameters between interfaces is similar to (call between methods in java), that is, it supports city list acquisition. So in the example, we first call this interface. Calling the interface involves requesting network resources. Here I encapsulate a tool class, including GET and POST methods
step4: Upload the code

Demo1: Network access tool class (encapsulating get and post methods)package juheAPI;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Map;
/**
* Network access tools
* @author silk
*
*/
public class PureNetUtil {
/**
* * The get method directly calls the post method
* * @param url network address
* @return Return network data
*/
Public static String get(String url){
return post(url,null);
}
/**
* *Set the post method to obtain network resources. If the parameter is null, it is actually set to the get method
* * @param url network address
* @param param Request parameter key-value pair
* @return Returns the read data
*/
public static String post(String url,Map param){
HttpURLConnection conn=null;
try URL u=new URL(url);
conn=(HttpURLConnection) u.openConnection();
StringBuffer sb=null;
If(param!=null){//If the request parameter is not empty
sb=new StringBuffer();
/*A URL connection can be used for input and/or output. Set the DoOutput
* flag to true if you intend to use the URL connection for output,
* false if not. The default is false.*/
//The default is false, the post method needs to write parameters, set true
conn.setDoOutput(true);
//Set the post method, the default is get
conn.setRequestMethod("POST");
//Get the output stream
OutputStream out=conn.getOutputStream();
//Encapsulate the output stream into an advanced output stream
BufferedWriter writer=new BufferedWriter(new OutputStreamWriter(out));
//Encapsulate parameters into key-value pairs
For (map.entry s: param.entryset ()) {

sb.append(s.getKey()).append("=").append(s.getValue()).append("&");
}
//Write parameters through the output stream
Writer.write(sb.deleteCharAt(sb.toString().length()-1).toString());
writer.close();//Must be closed, otherwise an error of incomplete parameters may occur
sb=null;
}
conn.connect();//Establish a connection
sb=new StringBuffer();
//Get the connection status code
int recode=conn.getResponseCode();
BufferedReader reader=null;
if(recode==200){
//Returns an input stream that reads from this open connection
// Get the input stream from the connection
InputStream in=conn.getInputStream();
//Encapsulate the input stream
Reader = new bufferedReader (New InputStreamReader (in));
String str=null;
sb=new StringBuffer();
//Read data from the input stream
while ((str=reader.readLine())!=null){
sb.append(str).append(System.getProperty("line.separator"));
}
//Close the input stream
reader.close();
If (sb.toString().length() == 0) {
}
return sb.toString().substring(0,
sb.toString().length() - System.getProperty("line.separator").length());
}
} catch (Exception e) {
e.printStackTrace();
Return null;
}finally{
if(conn!=null)//Close the connection
conn.disconnect();
}
return null; }

}
Demo2: Example of calling the interface to get the city list
package juheAPI;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;


/**
* Get city list
* National weather forecast interface calling JAVA example
* dtype string N Return data format: json or xml, default json
* key string Y the key you applied for
* @author silk
*
*/
public class GetCityList {
/**
* Call the interface to get the city list and return all data
* @return Return interface data
*/
Public static String excute(){
String url="http://v.juhe.cn/weather/citys?key=***a7558b2e0bedaa19673f74a6809ce";//Interface URL
//PureNetUtil is a tool class that encapsulates the get and post methods to obtain network request data
return PureNetUtil.get(url);//Use the get method
}
/**
* After calling the interface to return the data, parse the data and get the corresponding ID based on the input city name
* @param cityName city name
* @return Return the corresponding ID
*/
Public static String getIDBycityName(String cityName) {
String result=excute();//Return the interface result and get json format data
If(result!=null){
JSONObjectobj=JSONObject.fromObject(result);
result=obj.getString("resultcode");//Get the return status code
If(result!=null&&result.equals("200")){//200 indicates successful return of data
result=obj.getString("result");//Get the json format string array of the city list
JSONArray arr=JSONArray.fromObject(result);
For (object o: Arr) {// Traversing ARR
//Parse a json number string in the array
Obj = jsonObject.fromobject (o.tostring ()); /*At this time, objs such as {"id": "2", "province": "Beijing", "City": "Beijing", "Distrib": "Haidian"}*/
//Use the city key as a clue to determine the record you need to find
result=obj.getString("district");
// Prevent the input of incomplete cities, such as Suzhou input as Suzhou, similar and vague query
If(result.equals(cityName)||result.contains(cityName)){
result=obj.getString("id");//Get ID
}
}
}
}
return result }
Public static void main(String[] args) {
System.out.println(getIDBycityName("Hong Kong"));
}
}
Demo3: Call to query weather based on city name/id
package juheAPI;
import net.sf.json.JSONObject;


/**
* Check weather based on city name/id
* @author silk
*
*/
public class WeatherReportByCity {
/**
* Get based on city name
* * @param cityName
* * @return
*/
Public static String excute(String cityName){
String url=//Here is an example of returning json format data, so format=2, taking the city name as an example, cityName is passed in Chinese
"http://v.juhe.cn/weather/index?cityname="+cityName+"&key=***a7558b2e0bedaa19673f74a6809ce";
return PureNetUtil.get(url);//Get the return data through the tool class
}
/**
* Get an example of an attribute in the returned data. Here we take getting today’s temperature as an example
* "temperature": "8℃~20℃" Today's temperature
* * @param args
* * @return
*/
Public static String GetTodayTemperatureByCity(String city) {
String result=excute(city);
If(result!=null){
JSONObject obj=JSONObject.fromObject(result);
/*Get the return status code*/
result=obj.getString("resultcode");
/*If the status code is 200, the returned data is successful*/
If(result!=null&&result.equals("200")){
result=obj.getString("result");
// At this time, the data in the result has multiple keys, and the keys can be traversed to get the pair of attributes
obj=JSONObject.fromObject(result);
//The key corresponding to today’s temperature is today
result=obj.getString("today");
obj=JSONObject.fromObject(result);
//The key corresponding to today’s temperature is temperature
result=obj.getString("temperature");
return result }
}
return result }
Public static void main(String[] args) {
System.out.println(GetTodayTemperatureByCity("Suzhou"));
}
}
Demo4: Example of calling weather type and display list interface
package juheAPI;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;


/**
* Weather type and identification list interface calling JAVA example
* @author silk
*/
public class GetWeatherSignAndTypeList {
//Interface address, because you only need to pass in a fixed key as a parameter, so set it to a constant
Private static final String URL= "http://v.juhe.cn/weather/uni?key=***a7558b2e0bedaa19673f74a6809ce";
/**
* Get data through tool classes
* * @return
*/
Public static String excute(){
return PureNetUtil.get(URL);//Call the tool class to get the interface data
}
/**
* * Obtain by traversing the array
* @param wid weather corresponding id
* @return Weather name
*/
Public static String getWeatherByWid(String wid) {
String result=excute();//Get interface data
If(result!=null){
JSONObject obj=JSONObject.fromObject(result);
result=obj.getString("resultcode");
/*Get the return status code*/
If(result!=null&&result.equals("200")){
/*Get array data*/
result=obj.getString("result");
JSONArray arr=JSONArray.fromObject(result);
For (object o: Arr) {// Traversing array
Obj = jsonObject.fromobject (o.tostring ()); // If the results are traversed directly after the data you need, the result is returned directly, and whether the value is based on the key (WID), whether the value is equivalent to the passing parameter
If(obj.getString("wid").equals(wid)){
result=obj.getString("weather");
}
}
}
}
return result }
Public static void main(String[] args) {
System.out.println(getWeatherByWid("10"));
}
}
step5: If the status code is not 200 when calling the interface, carefully refer to the documentation, that is, return to step3: read the documentation!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!