看看这个,应该对你有帮助。http://blog.csdn.net/wanglj0925/article/details/8508919

解决方案 »

  1.   

    报错信息:  java.io.FileNotFoundException: http://192.168.1.100:8080/MP3/梦想启动.mp3
    搂住你确定没有中文的时候程序可以正常运行?
      

  2.   

    我在查询、保存时也出现类似问题,你需要用post提交,下面代码希望对你有用:
     
       HttpPost httpRequest = new HttpPost(url);        
       httpRequest.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));     
       HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequest);     
       if(httpResponse.getStatusLine().getStatusCode() == 200)  
         {            
    String strResult = EntityUtils.toString(httpResponse.getEntity()); 
       
         } 
      

  3.   

    java.lang.NullPointerException 你换成英文的可以吗,估计和中文没什么关系
      

  4.   

    对 “梦想启动.mp3” 截取,进行UTF-8编码,然后连接访问