Upload a file using HTTP put in Java

后端 未结 2 560
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-14 10:45

I am writing a desktop app in Java to upload a file to a folder on IIS server using HTTP PUT.

URLConnection urlconnection=null;
  try{
   File file = new Fil         


        
2条回答
  •  忘掉有多难
    2021-01-14 11:32

    Possible bug: bis.read() can return a valid 0. You'll need to change the while condition to >= 0.

提交回复
热议问题