download zip file using java?

前端 未结 6 1409
鱼传尺愫
鱼传尺愫 2021-02-15 12:13

I am downloading zip file from web server using Java but somehow I am loosing about 2kb in each file. I don\'t know why since same code works fine with other formats, e.g, text,

6条回答
  •  北恋
    北恋 (楼主)
    2021-02-15 12:54

    Try to remove the lines:

    conn.setDoOutput(true);
    conn.setDoInput(true);
    conn.setRequestProperty("content-type", "binary/data");
    

提交回复
热议问题