摘要:
String url = "https://www.baidu.com"; HttpHeaders headers = new HttpHeaders(); //设置请求头,自己从浏览器复制一个,如果请求的网站没要求也可以不设置 headers.set("user-agent", "..."); / 阅读全文
摘要:
Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.YEAR, year); calendar.set(Calendar.MONTH, month - 1); //月份要-1,因为Calendar中一到十二月是0-11 阅读全文