Android에서 서버에 사진을 업로드하는 기능을 구현하고 싶습니다. 처음에는 어떻게 해야 할지 몰랐습니다. 서버 스크립트 및 권한 설정은 어떻습니까? Android 작성을 고려할 때 여전히 서버 관련 내용을 배워야 합니다.
며칠 공부 끝에 드디어 이 기능을 완성하고 나중에 복습하기 쉽도록 녹음했습니다.
서버 upload.php에 대해 먼저 이야기해보자
<?php $target_path = "/var/www/upload/";//接收文件目录 $target_path = $target_path.($_FILES['file']['name']); $target_path = iconv("UTF-8","gb2312", $target_path); echo exec('whoami') ; if(move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) { echo "The file ".( $_FILES['file']['name'])." has been uploaded."; }else{ echo " --There was an error uploading the file, please try again! Error Code: ".$_FILES['file']['error']; } ?>
$target_path = "/var/www/upload/";//接收文件目录
这里的文件位置一定要写完整,一开始我服务器的基站是 /var/www/下的 所以当初写的是
$target_path = "/upload/";结果发现是不行的。所以这里是第一个注意点。如果读者想用这份脚本只需要把这个路径改成你们的目的<span style="font-family: Arial, Helvetica, sans-serif;">路径。</span>
다음은 Android MainActivty.java 코드입니다
android-async-http-1.4.7.jar 필요
package com.example.uploadbyasynchttp; import java.io.File; import java.io.FileNotFoundException; import java.io.UnsupportedEncodingException; import android.annotation.SuppressLint; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import com.loopj.android.http.AsyncHttpClient; import com.loopj.android.http.AsyncHttpResponseHandler; import com.loopj.android.http.RequestParams; public class MainActivity extends Activity { private int userid = 1; private String username = "HelloWorld"; @SuppressLint("SdCardPath") private String filepath = "/mnt/sdcard/DCIM/Camera/IMG_20160612_103832.jpg"; private String filepath1 = "/storage/emulated/0/DCIM/Camera/IMG_20160612_103832.jpg"; private String uploadUrl = "http://120.55.67.135/test/upload.php"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button but_upload = (Button) findViewById(R.id.button_upload_id) ; but_upload.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub AsyncHttpClient client = new AsyncHttpClient(); RequestParams params = new RequestParams(); //client.ENCODING_GZIP params.put("userid", userid); params.put("username", username); //添加文件 try { File f = new File(filepath1) ; if(f.exists()){ Log.i("AsyncHttp", "Yes") ; params.put("file", f); }else{ Log.i("AsyncHttp", "No") ; } } catch (FileNotFoundException e) { e.printStackTrace(); } /*////////////// * /把文件上传*/ client.post(uploadUrl, params, new AsyncHttpResponseHandler() { @Override public void onSuccess(int i, org.apache.http.Header[] headers, byte[] bytes) { try { //获取返回内容 String resp = new String(bytes, "utf-8"); Log.i("AsyncHttp", resp) ; //在这里处理返回的内容,例如解析json什么的... } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } @Override public void onFailure(int i, org.apache.http.Header[] headers, byte[] bytes, Throwable throwable) { //在这里处理连接失败的处理... } }); } }) ; } }
想要使用上面的代码只需要该两处地方,第一:图片的路径位置
private String filepath = "/mnt/sdcard/DCIM/Camera/IMG_20160612_103832.jpg";
第二:你服务器放upload脚本文件
private String uploadUrl = "http://120.55.67.135/test/upload.php";
下面是我的路径位置。(因为/var/www/是基地/使用只需要写/test/upload.php和上面upload.php路径是不一样)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:c > <Button android:id="@+id/button_upload_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="点击上传" /> </RelativeLayout>
注意权限:<uses-permission android:name="android.permission.INTERNET" />
이미지를 저장하는 대상 디렉터리에는 PHP를 실행하는 사용자에 대한 권한이 없습니다. PHP 스크립트를 실행하는 사용자는 스크립트 코드를 작성하고 이미지 폴더를 만든 사용자와 동일하지 않습니다. . 또한
아파치를 실행하는 사용자는 누구입니까? PHP 스크립트를 사용하여 다음을 얻습니다.
<code>echo exec('whoami'); //获得执行该文件的用户名,从而修改图片文件夹的权限</code>
이런 식으로 스크립트를 실행한 사용자를 www-data로 얻었습니다. 얻는 내용은 나와 다를 수 있습니다.
폴더를 소유한 사용자를 수정해 보겠습니다.
<code>chown www-data -R /var/www//upload/</code>
<code>/var/www//upload/</code><span>是我存放图片的目标路径,-R代表递归的给这个目录下的文件夹修改所属用户。</span>
그런 다음 폴더 권한을 수정합니다
<code>chmod 775 -R </code><span>/var/www/upload/</span>
완료되었습니다. 클릭 업로드 버튼을 누르고 업로드 폴더를 새로 고치면 사진을 볼 수 있습니다.
다음 3개의 블로그를 참고하세요.
http://www.th7.cn/Program/php/201510/593494.shtml
http:// www.cnblogs.com/bruce27/p/5361161.html
http://blog.csdn.net/fancylovejava/article/details/13506745
위 내용은 관련 내용을 포함하여 안드로이드가 서버(PHP)에 사진을 업로드하는 방법을 소개한 내용이 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.