0

MultipartEntity を介して画像とテキストをアップロードしようとしています。画像をアップロードして受信することはできますが、Stringbody を追加しようとすると、受信できないようです。ここに私のアンドロイドコードがあります

imports ETC...

public void oncreate(){
.....
nameValuePairs.add(new BasicNameValuePair("image", exsistingFileName));
nameValuePairs.add(new BasicNameValuePair("title", "title"));
}

public void post(String url, List<NameValuePair> nameValuePairs) {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpPost httpPost = new HttpPost(url);


try {
    MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);

    for(int index=0; index < nameValuePairs.size(); index++) {
        if(nameValuePairs.get(index).getName().equalsIgnoreCase("image")) {
            System.out.println("post - if");
            // If the key equals to "image", we use FileBody to transfer the data
            entity.addPart( nameValuePairs.get(index).getName(), new FileBody(new File (nameValuePairs.get(index).getValue())));

        } else {
            System.out.println("post - else");
            // Normal string data
            entity.addPart(nameValuePairs.get(index).getName(), new StringBody(nameValuePairs.get(index).getValue()));
        }
    }
    System.out.println("post - done" + entity);

    httpPost.setEntity(entity);

    HttpResponse response = httpClient.execute(httpPost, localContext);

} catch (IOException e) {
    e.printStackTrace();
}
}

そして私のphp:

<?php

$uploads_dir = 'uploads/';

$uploadname = $_FILES["image"]["name"];
$uploadtitle = $_FILES["title"]["title"];


move_uploaded_file($_FILES['image']['tmp_name'], $uploads_dir.$uploadname);
file_put_contents($uploads_dir.'juhl.txt', print_r($uploadtitle, true));
?>

MultipartEntity に関する他の質問に答えてきましたが、答えが見つからないようです。Stringbody だけを送信しようとしましたが、それでも成功しませんでした。問題はサーバー側 (PHP) にあると思いますが、提案は大歓迎です。

これはここでの私の最初の質問です - フォームと明快さについて自由にコメントしてください:-)

4

2 に答える 2

0

この方法を試してください。

         ByteArrayBody bab1 = bab11;
         HttpClient httpClient = new DefaultHttpClient();
         httpPost = new HttpPost("link.php?api_name=api");
         MultipartEntity reqEntity = new MultipartEntity(
                HttpMultipartMode.BROWSER_COMPATIBLE);
         // this is for String
      try {
            reqEntity.addPart("udid", new StringBody(UDID));
          } 
       catch (Exception e) 
          {
          }
              // this is for image upload 
          try 
          {
                reqEntity.addPart("file1", bab1);   
          } catch (Exception e) 
          {
          }
                 // this is for video upload 
      try {             
                if (stPath1 != null) {
                    Log.e("path 1", stPath1);
                    Log.v("stDocType1", "video");
                    File file = new File(stPath1);
                    FileBody bin = new FileBody(file);
                    reqEntity.addPart("file1", bin);
                }
        } catch (Exception e) {
        }

           httpPost.setEntity(reqEntity);
           ResponseHandler<String> responseHandler = new BasicResponseHandler();
           response = httpClient.execute(httpPost, responseHandler);
于 2013-01-17T14:24:47.997 に答える
0

問題はphpでした。Stringbody を受け取った場合、(filebody とは対照的に) パラメータは 1 つしかありません。そこで、$uploadtitle = $_FILES["title"]["title"]; の 2 番目のパラメーターを削除しました。そしてそれは働いた

<?php
$uploads_dir = 'uploads/';

$uploadname = $_FILES["image"]["name"];
$uploadtitle = $_FILES["title"];


move_uploaded_file($_FILES['image']['tmp_name'], $uploads_dir.$uploadname);
file_put_contents($uploads_dir.'juhl.txt', print_r($uploadtitle, true));
?>

同じ問題を抱えている場合、これが役立つことを願っています。

于 2013-01-22T11:08:23.703 に答える