文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android上传文件到Web服务器 PHP接收文件

2022-06-06 01:22

关注

Android上传文件到服务器,通常采用构造http协议的方法,模拟网页POST方法传输文件,服务器端可以采用JavaServlet或者PHP来接收要传输的文件。使用JavaServlet来接收文件的方法比较常见,在这里给大家介绍一个简单的服务器端使用PHP语言来接收文件的例子。
服务器端代码比较简单,接收传输过来的文件:


<?php 
$target_path = "./upload/";//接收文件目录 
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']); 
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { 
  echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded"; 
} else{ 
  echo "There was an error uploading the file, please try again!" . $_FILES['uploadedfile']['error']; 
} 
?> 

手机客户端代码:


package com.figo.uploadfile; 
import java.io.BufferedReader; 
import java.io.DataOutputStream; 
import java.io.FileInputStream; 
import java.io.InputStream; 
import java.io.InputStreamReader; 
import java.net.HttpURLConnection; 
import java.net.URL; 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
import android.widget.TextView; 
import android.widget.Toast; 
public class UploadfileActivity extends Activity 
{ 
 // 要上传的文件路径,理论上可以传输任何文件,实际使用时根据需要处理 
 private String uploadFile = "/sdcard/testimg.jpg"; 
 private String srcPath = "/sdcard/testimg.jpg"; 
 // 服务器上接收文件的处理页面,这里根据需要换成自己的 
 private String actionUrl = "http://10.100.1.208/receive_file.php"; 
 private TextView mText1; 
 private TextView mText2; 
 private Button mButton; 
 @Override 
 public void onCreate(Bundle savedInstanceState) 
 { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.main); 
  mText1 = (TextView) findViewById(R.id.myText2); 
  mText1.setText("文件路径:\n" + uploadFile); 
  mText2 = (TextView) findViewById(R.id.myText3); 
  mText2.setText("上传网址:\n" + actionUrl); 
   
  mButton = (Button) findViewById(R.id.myButton); 
  mButton.setOnClickListener(new View.OnClickListener() 
  { 
   @Override 
   public void onClick(View v) 
   { 
    uploadFile(actionUrl); 
   } 
  }); 
 } 
  
 private void uploadFile(String uploadUrl) 
 { 
  String end = "\r\n"; 
  String twoHyphens = "--"; 
  String boundary = "******"; 
  try 
  { 
   URL url = new URL(uploadUrl); 
   HttpURLConnection httpURLConnection = (HttpURLConnection) url 
     .openConnection(); 
   // 设置每次传输的流大小,可以有效防止手机因为内存不足崩溃 
   // 此方法用于在预先不知道内容长度时启用没有进行内部缓冲的 HTTP 请求正文的流。 
   httpURLConnection.setChunkedStreamingMode(128 * 1024);// 128K 
   // 允许输入输出流 
   httpURLConnection.setDoInput(true); 
   httpURLConnection.setDoOutput(true); 
   httpURLConnection.setUseCaches(false); 
   // 使用POST方法 
   httpURLConnection.setRequestMethod("POST"); 
   httpURLConnection.setRequestProperty("Connection", "Keep-Alive"); 
   httpURLConnection.setRequestProperty("Charset", "UTF-8"); 
   httpURLConnection.setRequestProperty("Content-Type", 
     "multipart/form-data;boundary=" + boundary); 
   DataOutputStream dos = new DataOutputStream( 
     httpURLConnection.getOutputStream()); 
   dos.writeBytes(twoHyphens + boundary + end); 
   dos.writeBytes("Content-Disposition: form-data; name=\"uploadedfile\"; filename=\"" 
     + srcPath.substring(srcPath.lastIndexOf("/") + 1) 
     + "\"" 
     + end); 
   dos.writeBytes(end); 
   FileInputStream fis = new FileInputStream(srcPath); 
   byte[] buffer = new byte[8192]; // 8k 
   int count = 0; 
   // 读取文件 
   while ((count = fis.read(buffer)) != -1) 
   { 
    dos.write(buffer, 0, count); 
   } 
   fis.close(); 
   dos.writeBytes(end); 
   dos.writeBytes(twoHyphens + boundary + twoHyphens + end); 
   dos.flush(); 
   InputStream is = httpURLConnection.getInputStream(); 
   InputStreamReader isr = new InputStreamReader(is, "utf-8"); 
   BufferedReader br = new BufferedReader(isr); 
   String result = br.readLine(); 
   Toast.makeText(this, result, Toast.LENGTH_LONG).show(); 
   dos.close(); 
   is.close(); 
  } catch (Exception e) 
  { 
   e.printStackTrace(); 
   setTitle(e.getMessage()); 
  } 
 } 
} 

在AndroidManifest.xml文件里添加网络访问权限:
<uses-permission android:name="android.permission.INTERNET" /> 

运行结果:

您可能感兴趣的文章:Android使用第三方服务器Bmob实现发送短信验证码Android使用httpPost向服务器发送请求的方法Android编程向服务器发送请求时出现中文乱码问题的解决方法Android发送xml数据给服务器的方法基于Android 错误信息捕获发送至服务器的详解Android向node.js编写的服务器发送数据并接收请求


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯