博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java访问Url地址并下载文件
阅读量:6850 次
发布时间:2019-06-26

本文共 793 字,大约阅读时间需要 2 分钟。

package com.yangjuqi.resource;

import java.io.*;

import java.net.URL;

/** * java访问URL并下载文件 * @author yangjuqi 2007-12-14 下午04:08:51 * */

public class ResourceURLServer

{

  public static void getURLResource(String ourputFile,String urlStr) throws Exception

{   

      FileWriter fw = new FileWriter(ourputFile);   

      PrintWriter pw = new PrintWriter(fw);   

      URL resourceUrl = new URL(urlStr);   

      InputStream content = (InputStream) resourceUrl.getContent();   

      BufferedReader in = new BufferedReader(new InputStreamReader(content));   

      String line;   

      while ((line = in.readLine()) != null)

    {    

        pw.println(line);   

    }   

       pw.close();   

       fw.close();

}

public static void main(String[] args)

{   

      try

     {    

            System.out.println("begin");    

            getURLResource("f:\\测试.xls","");    

            System.out.println("end");   

}

       catch (Exception e)

     {    

           e.printStackTrace();   

     }

}

}

转载地址:http://qlrul.baihongyu.com/

你可能感兴趣的文章
Spring中的Autowired注解和Resource注解的区别
查看>>
电脑待机、休眠、睡眠的区别
查看>>
滚动条
查看>>
Xamarin XAML语言教程控件模板的模板绑定
查看>>
上传通用化 VHD 并使用它在 Azure 中创建新 VM
查看>>
SSM Spring +SpringMVC+Mybatis 整合配置 及pom.xml
查看>>
php 字符串处理
查看>>
修改apache配置文件去除thinkphp url中的index.php(转)
查看>>
春困的经方
查看>>
asccii 表
查看>>
PHP5学习笔记-变量
查看>>
Jquery隔行变色(原创)
查看>>
(2)入门指南——(7)添加jquery代码(Adding our jQuery code)
查看>>
centos mongodb安装及简单实例
查看>>
UVA 1619 Feel Good(DP)
查看>>
iOS教你轻松打造瀑布流Layout
查看>>
CAD打开文件总是弹出要求选择字体怎么办
查看>>
Converting tabs to spaces - Vim Tips Wiki
查看>>
大规模MySQL运维陷阱:使用MyCat踩坑篇
查看>>
苏宁提出“2018年要新开店5000家”!底气从何而来?
查看>>