资源简介
我使用jdk1.7,新建的是java项目,注意java compiler也是1.7,你需要把jar包拿过去,类拿过去

代码片段和文件信息
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.UsernamePasswordCredentials;
import org.apache.commons.httpclient.auth.AuthScope;
import org.apache.commons.httpclient.HttpClient.*;
import org.apache.commons.httpclient.methods.GetMethod;
public class BasicAuthenticationExample {
public BasicAuthenticationExample() {
}
public static void main(String[] args) throws Exception {
HttpClient client = new HttpClient();
client.getState().setCredentials(AuthScope.ANY_HOST “132.35.87.240“
new UsernamePasswordCredentials(“essmon“ “oracle.123“));
GetMethod get = new GetMethod(“https://132.35.87.240/ruei/export.php?id=10048&date=20121112&date-to=20121113&output=csv“);
get.setDoAuthentication( true );
int status = client.executeMethod( get );
InputStream ins = get.getResponseBodyAsStream();
//按指定的字符集构建文件流
BufferedReader br = new BufferedReader(new InputStreamReader(ins“UTF-8“));
StringBuffer sbf = new StringBuffer();
String line = null;
while ((line = br.readLine()) != null)
{
sbf.append(line);
sbf.append(“\n“);
}
br.close();
System.out.println( sbf.toString());
get.releaseConnection();
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-09-01 22:14 java访问https网址下载文件(含证书)\
目录 0 2016-09-01 22:13 java访问https网址下载文件(含证书)\Downloadfile\
文件 46725 2011-06-24 21:25 java访问https网址下载文件(含证书)\Downloadfile\commons-codec-1.3.jar
文件 279781 2008-06-25 20:29 java访问https网址下载文件(含证书)\Downloadfile\commons-httpclient-3.0.1.jar
文件 60686 2012-06-22 11:08 java访问https网址下载文件(含证书)\Downloadfile\commons-logging-1.1.1.jar
文件 424648 2012-06-22 11:08 java访问https网址下载文件(含证书)\Downloadfile\httpclient-4.2.jar
文件 223282 2012-06-22 11:08 java访问https网址下载文件(含证书)\Downloadfile\httpcore-4.2.jar
目录 0 2016-09-01 21:29 java访问https网址下载文件(含证书)\Downloadfile\src\
文件 1530 2012-12-07 11:25 java访问https网址下载文件(含证书)\Downloadfile\src\BasicAuthenticationExample.java
文件 1794 2016-09-01 21:53 java访问https网址下载文件(含证书)\junjie.crt
文件 739 2016-09-01 22:14 java访问https网址下载文件(含证书)\使用说明.txt
- 上一篇:java反射机制案例及源码
- 下一篇:JAVA高手MD5加密算法底层源码完美实现
相关资源
- jsp 统计在线人数利用HttpSessionListene
- HTTP服务端接口模拟工具-HttpServerMock
- Android 7.0+抓包https突破ssl-pinning方案抓
- HttpClient配置SSL绕过https证书
- java httpclient https或http及文件中转上传
- android_libcurl_openssl
- Android通过WEBVIEW调用HTTPS
- Android使用HttpClient和HttpsUrlConnection两种
- android https demo
- IOSAndroid SSL双向认证HTTPS方式请求及配
- 中国电信物联网开放平台北向应用L
- android+https的
- android使用nanohttpd2.3.1搭建httpserver实现
- android 使用HttpsURLConnection方式的SSL双向
- Android贪吃蛇游戏_工程源码
- android https遇到自签名证书/信任证书
-
ijkpla
yer android编译好的so库,支持 - com.sun.net.httpserver.jar
- httpservletrequest的jar包
- httpservlet的jar包,修复httpservlet报错
- java应聘简历模板
- HttpUtil工具类支持POSTGETHTTPHTTPS
- Android使用OkHttp访问自签名证书的接口
- HttpServletRequest源码 HttpServletResponse源码
- java访问https网址文件
- HttpClient4.5 实现https忽略SSL证书验证
- webmagic修复HTTPS下无法抓取只支持TLS
- 基于HttpClient 4.3的可访问自签名HTTPS站
-
ijkpla
yer android编译好的so库,支持 - android studio实现HttpsURLConnection post请求
评论
共有 条评论