当前位置:   article > 正文

Java节假日api接口之获取指定日期的节假日信息_holiday-api maven包

holiday-api maven包

Java节假日api接口之获取指定日期的节假日信息

代码如下:

package com.nssol.learning;

import java.io.BufferedReader;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.net.HttpURLConnection;

import java.net.URL;

import java.text.SimpleDateFormat;

import net.sf.json.JSONObject;

/**

 * 调用API接口判断日期是否是工作日 周末还是节假日

 *

 * @author i

 *

 */

public class HolidayUtil {

    /**

     * @param httpArg

     *            :参数

     * @return 返回结果

     */

    public static int request( String httpArg) {

        String httpUrl="http://api.goseek.cn/Tools/holiday";

        BufferedReader reader = null;

        String result = null;

        StringBuffer sbf = new StringBuffer();

        httpUrl = httpUrl + "?date=" + httpArg;

        int d=0;

        try {

            URL url = new URL(httpUrl);

            HttpURLConnection connection = (HttpURLConnection) url

                    .openConnection();

            connection.setRequestMethod("GET");

            connection.connect();

            InputStream is = connection.getInputStream();

            reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));

            String strRead = null;

            while ((strRead = reader.readLine()) != null) {

                sbf.append(strRead);

                sbf.append("\r\n");

            }

            reader.close();

            result = sbf.toString();

            JSONObject ob= JSONObject.fromObject(result);

            if(ob!=null){

                d=Integer.parseInt(ob.getString("data"));

            }

        } catch (Exception e) {

            e.printStackTrace();

        }

        return d;

    }



    public static void main(String[] args) {

        //判断今天是否是工作日 周末 还是节假日

        SimpleDateFormat f=new SimpleDateFormat("yyyyMMdd");

        String httpArg="20190902";//f.format(new Date());

        System.out.println(httpArg);

        int n = request(httpArg);

        System.out.println(n);



    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123

需要注意的是,运行这个代码需要导入net.sf.json.JSONObject这个JAR包

  1. 我们可以在网上搜索对应JAR包导入到项目中即可

    下载地址为:http://sourceforge.net/projects/json-lib/files/json-lib/json-lib-2.4/

  2. 我们可以使用maven中的pom.xml配置文件来导入JAR包

    <dependency>
            <groupId>net.sf.json-lib</groupId>
            <artifactId>json-lib</artifactId>
            <version>2.4</version>
            <classifier>jdk15</classifier>
    </dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

运行结果

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/408299
推荐阅读
相关标签
  

闽ICP备14008679号