国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

java寫的Http服務器下載工具

wangtdgoodluck / 3340人閱讀

摘要:這個工具比較簡單,用于配合另外一個工具進行文件傳送廢話少說,上代碼這個工具實現了從服務器上下載指定行數的文件,并且不會因為編碼的問題引起下載的文件內容亂碼三個工具已經搞定,下一次就是把這三個工具結合起來將的文件轉移到上工具工具

這個工具比較簡單,用于配合另外一個工具進行文件傳送,廢話少說,上代碼

import java.net.URL;
import java.net.URLConnection;
import java.io.File;
import java.io.InputStream;
import java.io.FileOutputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

import org.apache.commons.io.FileUtils;

public class HttpUtil{
    private String httppath = "";

    public void setHttpPath(String httppath){
        this.httppath = httppath;
    }

    public String getHttpPath(){
        return this.httppath;
    }

    public HttpUtil(String httppath){
        this.httppath = httppath;
    }

    public InputStream getStream(String url){
        InputStream inStream = null;
        try{
            URL httpurl = new URL(url);
            URLConnection conn = httpurl.openConnection();
            inStream = conn.getInputStream();
        }catch (Exception e){
            e.printStackTrace();
            return null;
        }
        return inStream;
    }

    public int downLoad(String url,String localName ,int lines) throws FileNotFoundException, IOException{
        FileOutputStream fos = null;
        InputStream inStream = null;
        int ret = 0;
        try{
            URL httpurl = new URL(url);
            URLConnection conn = httpurl.openConnection();
            inStream = conn.getInputStream();
            fos = new FileOutputStream(localName);
            byte[] b = new byte[102400];
            int j = 0;
            while(inStream.read(b) != -1 && lines > 0){
                for(int i = j; i < b.length; i++){
                    if(b[i] == "
"){
                        fos.write(b, j, i - j + 1);
                        lines--;
                        if(lines <= 0){
                            break;
                        }
                        j = i + 1;
                        continue;
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
            ret = -1;
        }finally {
            fos.close();
            inStream.close();
            return ret;
        }
    }

    public static void main(String[] args){
        String httppath = "";
        int lines = 0;
        String localName = "";
        try{
            httppath = args[0];
            localName = args[1];
            lines = Integer.parseInt(args[2]);
        }catch (Exception e){
            e.printStackTrace();
            return;
        }
        try{
            HttpUtil hu = new HttpUtil(httppath);
            hu.downLoad(hu.getHttpPath(),localName ,lines);
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}

這個工具實現了從HTTP服務器上下載指定行數的文件,并且不會因為編碼的問題引起下載的文件內容亂碼
三個工具已經搞定,下一次就是把這三個工具結合起來將HTTP、FTP的文件轉移到HDFS上

hadoop工具
ftp工具

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/64286.html

相關文章

  • 一、python與pycharm的安裝

    摘要:是面向對象語言這意味著支持面向對象的風格或代碼封裝在對象的編程技術。在上執行命令,就可以進入到的交互模式,并顯示出版本等信息。選擇的版本,需要下載安裝包,然后進行安裝。 一、Python簡介 Python 是一種解釋型語言: 這意味著開發過程中沒有了編譯這個環節。類似于PHP和Perl語言。 Python 是交互式語言: 這意味著,您可以在一個Python提示符,直接互動執行寫你的程...

    awokezhou 評論0 收藏0
  • 實現一個spring webservice服務端三:實現一個有復雜返回值的spring-ws服務

    摘要:,將類或枚舉類型映射到模式類型,控制字段或屬性的序列化。表示將自動綁定類中的每個非靜態的非瞬態的由標注字段到。,對于數組或集合即包含多個元素的成員變量,生成一個包裝該數組或集合的元素稱為包裝器。 在經過前面兩篇文章的學習,我已經能夠熟練創建一個正常運行的spring-ws的webservice服務,大多數接口,都是要有返回數據,所以這篇文章就是學習spring-ws怎么實現返回數據 實...

    xinhaip 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<