the 上傳產品類別在我的數據庫中註冊一個產品,並將照片上傳到我的服務器。 我想將文件上傳到我的服務器。 當我執行我的應用程序完美的工作,該產品是在數據庫中註冊,但在我的服務器,照片尚未加載。Android-將照片上傳到服務器
當我調試,我把一個斷點httppost.setEntity(mpEntity);
,file
屬性附加傷害值是/storage/emulated/0/aaaa/20150529_104715.jpg
哪裏保存我的文件的路徑爲http://aaaa.com/app/imagenes/
和的upload.php
路徑是http://aaaa.com/app
這裏我的代碼:
atributes:
private List<NameValuePair> params = new ArrayList<NameValuePair>(1);
private File file;
private String imageFileName = "";
private String urlImag ="http://aaaa.com/app/imagenes/";
private EditText etNombreProducto,etDescripcion,etPrecioDia,etPrecioSemana;
private Bitmap bitmap=null;
方法:
public void takePhoto() {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
imageFileName = timeStamp + ".jpg";
//Creamos el Intent para llamar a la Camara
Intent cameraIntent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
//Creamos una carpeta en la memeria del terminal
File imagesFolder = new File(
Environment.getExternalStorageDirectory(), "aaaa");
imagesFolder.mkdirs();
//anadimos el nombre de la imagen
file= new File(imagesFolder, imageFileName);
Uri uriSavedImage = Uri.fromFile(file);
//Le decimos al Intent que queremos grabar la imagen
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);
//Lanzamos la aplicacion de la camara con retorno (forResult)
startActivityForResult(cameraIntent, 1);
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
//Comprovamos que la foto se a realizado
if (requestCode == 1 && resultCode == RESULT_OK) {
//Creamos un bitmap con la imagen recientemente
//almacenada en la memoria
bitmap= BitmapFactory.decodeFile(
Environment.getExternalStorageDirectory() +
"/aaaa/" + imageFileName);
// //Anadimos el bitmap al imageView para
// //mostrarlo por pantalla
// img.setImageBitmap(bMap);
}
}
private boolean uploadFoto(String imag){
HttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
HttpPost httppost = new HttpPost("http://aaaa.com/app/upload.php");
MultipartEntity mpEntity = new MultipartEntity();
ContentBody contentBody = new FileBody(file,"image/jpeg");
mpEntity.addPart("foto", contentBody);
httppost.setEntity(mpEntity);
try {
httpclient.execute(httppost);
httpclient.getConnectionManager().shutdown();
return true;
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
private boolean onInsert(){
String nombreP = etNombreProducto.getText().toString();
String descripcion = etDescripcion.getText().toString();
String precioD = etPrecioDia.getText().toString();
String precioS=etPrecioSemana.getText().toString();
HttpClient httpclient;
params.add(new BasicNameValuePair("nombre", nombreP));
params.add(new BasicNameValuePair("descripcion", descripcion));
params.add(new BasicNameValuePair("preciodia", precioD));
params.add(new BasicNameValuePair("preciosemana", precioS));
params.add(new BasicNameValuePair("imagen", urlImag + imageFileName));
HttpPost httppost;
httpclient=new DefaultHttpClient();
httppost= new HttpPost("http://aaaa.com/app/insertProduct.php");
// Url del Servidor
try {
httppost.setEntity(new UrlEncodedFormEntity(params));
httpclient.execute(httppost);
return true;
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;
}
private void serverUpdate(){
if (file.exists())
new ServerUpdate().execute();
else
Toast.makeText(UploadProduct.this, "Debes de hacer una foto",
Toast.LENGTH_LONG).show();
}
class ServerUpdate extends AsyncTask<String,String,String> {
ProgressDialog pDialog;
@Override
protected String doInBackground(String... arg0) {
Boolean b=uploadFoto(imageFileName);
if(onInsert()&& b)
runOnUiThread(new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
Toast.makeText(UploadProduct.this, "Exito al subir la imagen",
Toast.LENGTH_LONG).show();
}
});
else
runOnUiThread(new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
Toast.makeText(UploadProduct.this, "Sin exito al subir la imagen",
Toast.LENGTH_LONG).show();
}
});
return null;
}
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(UploadProduct.this);
pDialog.setMessage("Actualizando Servidor, espere...");
pDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
pDialog.show();
}
protected void onPostExecute(String result) {
super.onPostExecute(result);
pDialog.dismiss();
}
}
我upload.php的
<?php
$ruta = "app/imagenes/" .basename($_FILES['foto']['name']);
if(move_uploaded_file($_FILES['foto']['tmp_name'], $ruta)){
echo "success";
} else{
echo "fail";
}
?>
看看這個答案 - http://stackoverflow.com/questions/11164398/android-upload-video -to-remote-server-using-http-multipart-form-data – Zain
謝謝@zain我看到你的帖子,但我認爲問題出在'upload.php'中。 – tipiwiny