Android 从httpurlconnection获取json响应

Android 从httpurlconnection获取json响应,android,json,apache,Android,Json,Apache,我想从httpurlconnection获取Json响应。 在使用httpclient并从中获取httpresponse之前,我获取json。 但现在我不知道如何从httpurlconnection获取httpresponse。 我尝试使用以下示例上载图像: 非常感谢Yogendra,但我不是java专业人士。您能将此代码转换为异步http吗: public int uploadFile(String sourceFileUri) { String fileName = sou

我想从httpurlconnection获取Json响应。 在使用httpclient并从中获取httpresponse之前,我获取json。 但现在我不知道如何从httpurlconnection获取httpresponse。 我尝试使用以下示例上载图像:


非常感谢Yogendra,但我不是java专业人士。您能将此代码转换为异步http吗:

 public int uploadFile(String sourceFileUri) {


      String fileName = sourceFileUri;

      HttpURLConnection conn = null;
      DataOutputStream dos = null;  
      String lineEnd = "\r\n";
      String twoHyphens = "--";
      String boundary = "*****";
      int bytesRead, bytesAvailable, bufferSize;
      byte[] buffer;
      int maxBufferSize = 1 * 1024 * 1024; 
      File sourceFile = new File(sourceFileUri); 

      if (!sourceFile.isFile()) {

           dialog.dismiss(); 

           Log.e("uploadFile", "Source File not exist :"
                               +uploadFilePath );

           runOnUiThread(new Runnable() {
               public void run() {
                   messageText.setText("Source File not exist :"
                           +uploadFilePath );
               }
           }); 

           return 0;

      }
      else
      {
           try { 

                 // open a URL connection to the Servlet
               FileInputStream fileInputStream = new FileInputStream(sourceFile);
               URL url = new URL(upLoadServerUri);

               HttpResponse respons;

               // Open a HTTP  connection to  the URL
               conn = (HttpURLConnection) url.openConnection(); 
               conn.setDoInput(true); // Allow Inputs
               conn.setDoOutput(true); // Allow Outputs
               conn.setUseCaches(false); // Don't use a Cached Copy
               conn.setRequestMethod("POST");
               conn.setRequestProperty("Connection", "Keep-Alive");
               conn.setRequestProperty("ENCTYPE", "multipart/form-data");
               conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
               conn.setRequestProperty("uploaded_file", fileName); 



               dos = new DataOutputStream(conn.getOutputStream());
               dos.writeBytes(twoHyphens + boundary + lineEnd); 
               dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
                                         + fileName + "\"" + lineEnd);

               dos.writeBytes(lineEnd);

               // create a buffer of  maximum size
               bytesAvailable = fileInputStream.available(); 

               bufferSize = Math.min(bytesAvailable, maxBufferSize);
               buffer = new byte[bufferSize];

               // read file and write it into form...
               bytesRead = fileInputStream.read(buffer, 0, bufferSize);  

               while (bytesRead > 0) {

                 dos.write(buffer, 0, bufferSize);
                 bytesAvailable = fileInputStream.available();
                 bufferSize = Math.min(bytesAvailable, maxBufferSize);
                 bytesRead = fileInputStream.read(buffer, 0, bufferSize);   

                }

               // send multipart form data necesssary after file data...
               dos.writeBytes(lineEnd);
               dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);


               StringBuilder builder = new StringBuilder();
               builder.append(conn.getResponseCode())
                      .append(" ")
                      .append(conn.getResponseMessage())
                      .append("\n");

               Map<String, List<String>> map = conn.getHeaderFields();
               for (Map.Entry<String, List<String>> entry : map.entrySet())
               {
                   if (entry.getKey() == null) 
                       continue;
                   builder.append( entry.getKey())
                          .append(": ");

                   List<String> headerValues = entry.getValue();
                   Iterator<String> it = headerValues.iterator();
                   if (it.hasNext()) {
                       builder.append(it.next());

                       while (it.hasNext()) {
                           builder.append(", ")
                                  .append(it.next());
                       }
                   }

                   builder.append("\n");
               }

               Log.i("Response", builder.toString());


               // Responses from the server (code and message)
               serverResponseCode = conn.getResponseCode();
               String serverResponseMessage = String.valueOf(conn.getContentEncoding());

              // Log.i("uploadFile", "HTTP Response is : " 
                //     + conn.getHeaderField("server") + ": " + serverResponseCode);



               if(serverResponseCode == 200){

                   runOnUiThread(new Runnable() {
                        public void run() {

                            String msg = "File Upload Completed.\n\n See uploaded file here : \n\n"
                                          +" http://www.androidexample.com/media/uploads/";

                            messageText.setText(msg);
                            Toast.makeText(UploadToServer.this, "File Upload Complete.", 
                                         Toast.LENGTH_SHORT).show();
                        }
                    });                
               }    

               //close the streams //
               fileInputStream.close();
               dos.flush();
               dos.close();

          } catch (MalformedURLException ex) {

              dialog.dismiss();  
              ex.printStackTrace();

              runOnUiThread(new Runnable() {
                  public void run() {
                      messageText.setText("MalformedURLException Exception : check script url.");
                      Toast.makeText(UploadToServer.this, "MalformedURLException", Toast.LENGTH_SHORT).show();
                  }
              });

              Log.e("Upload file to server", "error: " + ex.getMessage(), ex);  
          } catch (Exception e) {

              dialog.dismiss();  
              e.printStackTrace();

              runOnUiThread(new Runnable() {
                  public void run() {
                      messageText.setText("Got Exception : see logcat ");
                      Toast.makeText(UploadToServer.this, "Got Exception : see logcat ", 
                              Toast.LENGTH_SHORT).show();
                  }
              });
              Log.e("Upload file to server Exception", "Exception : " 
                                               + e.getMessage(), e);  
          }
          dialog.dismiss();       
          return serverResponseCode; 

       } // End else block 
     } 
public int uploadFile(字符串sourceFileUri){
字符串fileName=sourceFileUri;
HttpURLConnection conn=null;
DataOutputStream dos=null;
字符串lineEnd=“\r\n”;
字符串双连字符=“--”;
字符串边界=“*******”;
int字节读取,字节可用,缓冲区大小;
字节[]缓冲区;
int maxBufferSize=1*1024*1024;
File sourceFile=新文件(sourceFileUri);
如果(!sourceFile.isFile()){
dialog.dismise();
Log.e(“上载文件”,“源文件不存在:”
+上传文件路径);
runOnUiThread(新的Runnable(){
公开募捐{
messageText.setText(“源文件不存在:”
+上传文件路径);
}
}); 
返回0;
}
其他的
{
试试{
//打开到Servlet的URL连接
FileInputStream FileInputStream=新的FileInputStream(sourceFile);
URL URL=新URL(upLoadServerUri);
HttpResponse-response;
//打开到URL的HTTP连接
conn=(HttpURLConnection)url.openConnection();
conn.setDoInput(true);//允许输入
conn.setDoOutput(true);//允许输出
conn.setUseCaches(false);//不要使用缓存副本
conn.setRequestMethod(“POST”);
conn.setRequestProperty(“连接”、“保持活动”);
conn.setRequestProperty(“ENCTYPE”、“多部分/表单数据”);
conn.setRequestProperty(“内容类型”、“多部分/表单数据;边界=“+boundary”);
conn.setRequestProperty(“上传的_文件”,文件名);
dos=新的DataOutputStream(conn.getOutputStream());
写字节(两个连字符+边界+行结束);
dos.writeBytes(“内容处置:表单数据;名称=\”上载的文件\“文件名=\”
+文件名+“\”+lineEnd);
dos.writeBytes(lineEnd);
//创建最大大小的缓冲区
bytesAvailable=fileInputStream.available();
bufferSize=Math.min(字节可用,maxBufferSize);
buffer=新字节[bufferSize];
//读取文件并将其写入表单。。。
bytesRead=fileInputStream.read(缓冲区,0,缓冲区大小);
而(字节读取>0){
写入(缓冲区,0,缓冲区大小);
bytesAvailable=fileInputStream.available();
bufferSize=Math.min(字节可用,maxBufferSize);
bytesRead=fileInputStream.read(缓冲区,0,缓冲区大小);
}
//发送文件数据后所需的多部分表单数据。。。
dos.writeBytes(lineEnd);
写字节(两个连字符+边界+两个连字符+行结束);
StringBuilder=新的StringBuilder();
append(conn.getResponseCode())
.附加(“”)
.append(连接getResponseMessage())
.append(“\n”);
Map Map=conn.getHeaderFields();
对于(Map.Entry:Map.entrySet())
{
if(entry.getKey()==null)
继续;
builder.append(entry.getKey())
.附加(“:”);
List HeaderValue=entry.getValue();
迭代器it=headerValues.Iterator();
if(it.hasNext()){
append(it.next());
while(it.hasNext()){
builder.append(“,”)
.append(it.next());
}
}
生成器。追加(“\n”);
}
Log.i(“Response”,builder.toString());
//来自服务器的响应(代码和消息)
serverResponseCode=conn.getResponseCode();
String serverResponseMessage=String.valueOf(conn.getContentEncoding());
//Log.i(“上传文件”,“HTTP响应为:”
//+conn.getHeaderField(“服务器”)+:“+serverResponseCode);
如果(服务器响应代码==200){
runOnUiThread(新的Runnable(){
公开募捐{
String msg=“文件上载已完成。\n\n请参阅此处上载的文件:\n\n”
+" http://www.androidexample.com/media/uploads/";
messageText.setText(msg);
Toast.makeText(UploadToServer.this,“文件上载完成”,
吐司。长度(短)。show();
}
});                
}    
//关闭溪流//
fileInputStream.close();
dos.flush();
dos.close();
}捕获(格式错误){
dialog.dismise();
例如printStackTrace();
runOnUiThread(新的Runnable(){
公开募捐{
setText(“MalformedURLException异常:检查脚本url”);
Toast.makeText(UploadToServer.this,“MalformedURLException”,Toast.LENGTH_SHORT.show();
}
});
Log.e(“向上
public class getServerDataAsync extends AsyncTask<String, Void, String> {

    String fileName;
    HttpURLConnection conn = null;
    DataOutputStream dos = null;
    String lineEnd = "\r\n";
    String twoHyphens = "--";
    String boundary = "*****";
    int bytesRead, bytesAvailable, bufferSize;
    byte[] buffer;
    int maxBufferSize = 1 * 1024 * 1024;
    File sourceFile;
    String msg;

    @Override
    protected String doInBackground(String... arg0) {
        // TODO Auto-generated method stub

        fileName = arg0[0];
        sourceFile = new File(arg0[0]);

        if (!sourceFile.isFile()) {

            Log.e("uploadFile", "Source File not exist :" + uploadFilePath);

            msg = "Source File not exist :" + uploadFilePath;
        } else {
            try {

                // open a URL connection to the Servlet
                FileInputStream fileInputStream = new FileInputStream(
                        fileName);
                URL url = new URL(upLoadServerUri);

                HttpResponse respons;

                // Open a HTTP connection to the URL
                conn = (HttpURLConnection) url.openConnection();
                conn.setDoInput(true); // Allow Inputs
                conn.setDoOutput(true); // Allow Outputs
                conn.setUseCaches(false); // Don't use a Cached Copy
                conn.setRequestMethod("POST");
                conn.setRequestProperty("Connection", "Keep-Alive");
                conn.setRequestProperty("ENCTYPE", "multipart/form-data");
                conn.setRequestProperty("Content-Type",
                        "multipart/form-data;boundary=" + boundary);
                conn.setRequestProperty("uploaded_file", fileName);

                dos = new DataOutputStream(conn.getOutputStream());
                dos.writeBytes(twoHyphens + boundary + lineEnd);
                dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
                        + fileName + "\"" + lineEnd);

                dos.writeBytes(lineEnd);

                // create a buffer of maximum size
                bytesAvailable = fileInputStream.available();

                bufferSize = Math.min(bytesAvailable, maxBufferSize);
                buffer = new byte[bufferSize];

                // read file and write it into form...
                bytesRead = fileInputStream.read(buffer, 0, bufferSize);

                while (bytesRead > 0) {

                    dos.write(buffer, 0, bufferSize);
                    bytesAvailable = fileInputStream.available();
                    bufferSize = Math.min(bytesAvailable, maxBufferSize);
                    bytesRead = fileInputStream.read(buffer, 0, bufferSize);

                }

                // send multipart form data necesssary after file data...
                dos.writeBytes(lineEnd);
                dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

                StringBuilder builder = new StringBuilder();
                builder.append(conn.getResponseCode()).append(" ")
                        .append(conn.getResponseMessage()).append("\n");

                Map<String, List<String>> map = conn.getHeaderFields();
                for (Map.Entry<String, List<String>> entry : map.entrySet()) {
                    if (entry.getKey() == null)
                        continue;
                    builder.append(entry.getKey()).append(": ");

                    List<String> headerValues = entry.getValue();
                    Iterator<String> it = headerValues.iterator();
                    if (it.hasNext()) {
                        builder.append(it.next());

                        while (it.hasNext()) {
                            builder.append(", ").append(it.next());
                        }
                    }

                    builder.append("\n");
                }

                Log.i("Response", builder.toString());

                // Responses from the server (code and message)
                serverResponseCode = conn.getResponseCode();
                String serverResponseMessage = String.valueOf(conn
                        .getContentEncoding());

                // Log.i("uploadFile", "HTTP Response is : "
                // + conn.getHeaderField("server") + ": " +
                // serverResponseCode);

                if (serverResponseCode == 200) {

                    msg = "File Upload Completed.\n\n See uploaded file here : \n\n"
                            + " http://www.androidexample.com/media/uploads/";

                }

                // close the streams //
                fileInputStream.close();
                dos.flush();
                dos.close();

            } catch (MalformedURLException ex) {

                ex.printStackTrace();
                msg = "MalformedURLException Exception : check script url.";

                Log.e("Upload file to server", "error: " + ex.getMessage(),
                        ex);
            } catch (Exception e) {

                e.printStackTrace();
                msg = "Got Exception : see logcat ";

                Log.e("Upload file to server Exception",
                        "Exception : " + e.getMessage(), e);
            }

        } // End else block

        return msg;
    }

    @Override
    protected void onPostExecute(String result) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
        messageText.setText(result);
    }

}
new getServerDataAsync().execute("source url");