首页 新闻 会员 周边 捐助

为什么IDEA里URL下载的Tomcat文本文件打开没有内容

0
悬赏园豆:100 [待解决问题]
package wangluobiancheng.lesson04;

import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

public class UrlDown {
    public static void main(String[] args) throws Exception {
        //1.下载地址
        URL url = new URL("http://localhost:8080/Alan/Securityfile.txt");
        //2.连接到这个资源 HTTP
        HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();

        InputStream inputStream = urlConnection.getInputStream();

        FileOutputStream fos = new FileOutputStream("Securityfile.txt");


        byte[]buffer=new byte[1024];
        int len;
        while((len=inputStream.read())!=-1){
           fos.write(buffer,0,len); //写出这个数据
        }
        fos.close();
        inputStream.close();
        urlConnection.disconnect();//断开连接
    }
}

打开就是这样的

改变+奋斗ing的主页 改变+奋斗ing | 初学一级 | 园豆:102
提问于:2021-06-22 21:57
< >
分享
所有回答(1)
0

我是直接在前端用window.open(文件地址),浏览器会自动下载,比较省事。

真正的张起灵 | 园豆:204 (菜鸟二级) | 2021-06-23 14:20
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册