-5
我正在製作一個網站來管理音樂,但我不知道如何從我的servlet下載mp3。用Java servlet從Tomcat服務器下載mp3文件
這裏是我的代碼:
filename=new File(imagepath).getName();
FileOutputStream fil=new FileOutputStream(pathfolder+"/"+filename);
URL url=new URL("http://192.168.1.4:8080/Demo/upload/"+filename);
HttpURLConnection urlconnection=null;
urlconnection=(HttpURLConnection)url.openConnection();
urlconnection.setRequestMethod("GET");
urlconnection.setDoOutput(true);
urlconnection.connect();
int total_size=urlconnection.getContentLength();
Log.i("totall sizeeeeeee",""+total_size);
InputStream inpstream = urlconnection.getInputStream();
byte[] buffer=new byte[total_size];
int buffleng=0,download_size=0;
while((buffleng=inpstream.read(buffer))>0)
{
fil.write(buffer,0,buffleng);
}
}
catch(Exception ex){
ex.printStackTrace();
}
姆......像下載音樂的代理? –