【第84题】JAVA高级技术-网络编程3(网络资源的单线程下载)
回城传送–》《JAVA筑基100例》
零、前言
今天是学习 JAVA语言 打卡的第84天,每天我会提供一篇文章供群成员阅读( 不需要订阅付钱 ),读完文章之后,按解题思路,自己再实现一遍。在小虚竹JAVA社区 中对应的 【打卡贴】打卡,今天的任务就算完成了。
因为大家都在一起学习同一篇文章,所以有什么问题都可以在群里问,群里的小伙伴可以迅速地帮到你,一个人可以走得很快,一群人可以走得很远,有一起学习交流的战友,是多么幸运的事情。
学完后,自己写篇学习报告的博客,可以发布到小虚竹JAVA社区 ,供学弟学妹们参考。
我的学习策略很简单,题海策略+ 费曼学习法。如果能把这100题都认认真真自己实现一遍,那意味着 JAVA语言 已经筑基成功了。后面的进阶学习,可以继续跟着我,一起走向架构师之路。
一、题目描述
题目实现:在一个线程中完成网络资源的下载。
二、解题思路
创建一个类:SingleThreadDownloadFrame,继承JFrame窗体类。
定义一个download()方法:用于从指定网址下载文件
使用URLConnection类的getInputStream()方法 获取网页资源的输入流对象。
获得完整路径,截取路径,获得路径中最后一个斜杠的位置当文件名
从输入流中读取内容,写到本地文件中。
测试下载这个链接:http://xz.w10a.com/small/FeiRarInstall.rar
三、代码详解
SingleThreadDownloadFrame
package com.xiaoxuzhu;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
/**
* Description: 在一个线程中完成网络资源的下载
*
* @author xiaoxuzhu
* @version 1.0
*
* <pre>
* 修改记录:
* 修改后版本 修改人 修改日期 修改内容
* 2022/5/24.1 xiaoxuzhu 2022/5/24 Create
* </pre>
* @date 2022/5/24
*/
public class SingleThreadDownloadFrame extends JFrame {
private JTextField tf_address;
/**
* Launch the application
* @param args
*/
public static void main(String args[]) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
SingleThreadDownloadFrame frame = new SingleThreadDownloadFrame();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame
*/
public SingleThreadDownloadFrame() {
super();
getContentPane().setLayout(null);
setTitle("网络资源的单线程下载");
setBounds(100, 100, 500, 237);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JLabel label = new JLabel();
label.setText("网络资源的网址:");
label.setBounds(10, 88, 118, 18);
getContentPane().add(label);
tf_address = new JTextField();
tf_address.setBounds(117, 86, 357, 22);
getContentPane().add(tf_address);
final JButton button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
String address = tf_address.getText().trim();// 获得网址
download(address); // 下载文件
}
});
button.setText("单击开始下载");
button.setBounds(41, 144, 145, 28);
getContentPane().add(button);
final JButton button_1 = new JButton();
button_1.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
tf_address.setText(null);// 清除文本框内容
tf_address.requestFocus();// 文本框获得焦点
}
});
button_1.setText("清 空");
button_1.setBounds(204, 144, 106, 28);
getContentPane().add(button_1);
final JButton button_2 = new JButton();
button_2.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
System.exit(0);
}
});
button_2.setText("退 出");
button_2.setBounds(328, 144, 106, 28);
getContentPane().add(button_2);
final JLabel label_1 = new JLabel();
label_1.setForeground(new Color(0, 0, 255));
label_1.setFont(new Font("", Font.BOLD, 24));
label_1.setText("网络资源的单线程下载");
label_1.setBounds(117, 21, 301, 48);
getContentPane().add(label_1);
}
public void download(String urlAddr){ // 从指定网址下载文件
try {
URL url = new URL(urlAddr); // 创建URL对象
URLConnection urlConn = url.openConnection(); // 获得连接对象
urlConn.connect(); // 打开到url引用资源的通信链接
InputStream in = urlConn.getInputStream() ; // 获得输入流对象
String filePath = url.getFile(); // 获得完整路径
int pos = filePath.lastIndexOf("/"); // 获得路径中最后一个斜杠的位置
String fileName = filePath.substring(pos+1); // 截取文件名
FileOutputStream out = new FileOutputStream("D:/"+fileName); // 创建输出流对象
byte[] bytes = new byte[1024]; // 声明存放下载内容的字节数组
int len = in.read(bytes); // 从输入流中读取内容
while (len != -1){
out.write(bytes,0,len); // 将读取的内容写到输出流
len = in.read(bytes); // 继续从输入流中读取内容
}
out.close(); // 关闭输出流
in.close(); // 关闭输入流
JOptionPane.showMessageDialog(null, "下载完毕");
} catch (Exception e) {
e.printStackTrace();
}
}
}
- 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
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
四、推荐专栏
五、示例源码下载
关注下面的公众号,回复筑基+题目号
筑基84
文章来源: xiaoxuzhu.blog.csdn.net,作者:小虚竹,版权归原作者所有,如需转载,请联系作者。
原文链接:xiaoxuzhu.blog.csdn.net/article/details/125238508
- 点赞
- 收藏
- 关注作者
评论(0)