资源简介
java访问https网址下载文件,当网页需要下载证书的时候,代码和操作步骤齐全。
代码片段和文件信息
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 2012-12-07 11:31 java访问https网址下载文件\
目录 0 2012-12-07 11:26 java访问https网址下载文件\Downloadfile\
文件 530 2012-12-07 11:17 java访问https网址下载文件\Downloadfile\.classpath
文件 388 2012-12-06 16:15 java访问https网址下载文件\Downloadfile\.project
目录 0 2012-12-07 11:26 java访问https网址下载文件\Downloadfile\bin\
文件 2350 2012-12-07 11:25 java访问https网址下载文件\Downloadfile\bin\BasicAuthenticationExample.class
文件 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 2012-12-07 11:26 java访问https网址下载文件\Downloadfile\src\
文件 1530 2012-12-07 11:25 java访问https网址下载文件\Downloadfile\src\BasicAuthenticationExample.java
文件 274 2012-12-07 11:32 java访问https网址下载文件\使用说明.txt
文件 162 2012-12-07 11:31 java访问https网址下载文件\导入证书脚本.txt
- 上一篇:j2EE编码规范----D:\\文件项目
- 下一篇:java自动组卷系统
相关资源
- java自动组卷系统
- 乙醇老师的57页详细讲解—webdriver实用
- 忽略字段的首字母大小写,将json字符
- JavaEE开发的颠覆者 Spring Boot实战 完整
- java写的学生信息管理系统
- 用java编程来回运动的小球
- java调用C#封装的dll方法
- hive函数大全中文版
-
java读取和写入xm
l文件 - ai五子棋,五元组算法
- 用java编写的火柴游戏
- Java+SQL Server航班查询与订票系统
- Java反射demo
- java实现聊天室功能包含全部代码,有
- java图片马赛克化
- 剑指Offerjava版 pdf 高清
- Java版的考试系统,Mysql数据库
- The Thinking In Java Annotated Solution Guide
- 图灵机Java程序源码
- java用JNA调用dll,包含各种参数调用
- 2019Java微服务架构(SpringBoot+SpringClo
- java ssm权限管理系统 慕课实战
- pinyin4j-2.5.0jar包,JAVA生成五笔码和拼
- java学习视频网盘分享
- HttpClient4.5 实现https忽略SSL证书验证
- java相关项目实战.txt
- 编写高质量代码:改善Java程序的151个
- 用JAVA实现基于CS模式的聊天室
- 文本相似度对比器Java
- java调用打印机指令实现
评论
共有 条评论