问题描述: 在Android开发中,我们经常需要将图片上传到php服务器,但是上传的过程中总是失败,无法成功上传图片。
解决方法:
这些权限分别用于访问网络和读取SD卡上的图片。
public void uploadImage(String imagePath) {
try {
URL url = new URL("http://your_php_server_url/upload.php");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
DataOutputStream dos = new DataOutputStream(conn.getOutputStream());
dos.writeBytes("--" + boundary + "\r\n");
dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\"" + imagePath + "\"" + "\r\n");
dos.writeBytes("\r\n");
FileInputStream fis = new FileInputStream(new File(imagePath));
byte[] buffer = new byte[8192];
int bytesRead;
while ((bytesRead = fis.read(buffer)) != -1) {
dos.write(buffer, 0, bytesRead);
}
fis.close();
dos.writeBytes("\r\n");
dos.writeBytes("--" + boundary + "--" + "\r\n");
dos.flush();
InputStream is = conn.getInputStream();
// 处理服务器返回的结果
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
StringBuilder response = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 处理上传成功的逻辑
if (response.toString().equals("uploaded_success")) {
// 上传成功
} else {
// 上传失败
}
} catch (Exception e) {
e.printStackTrace();
}
}
其中,imagePath
为待上传图片的路径,your_php_server_url
为php服务器的地址。该示例代码使用了HttpURLConnection
来进行网络请求,并采用multipart/form-data的形式上传图片。
在php代码中,我们将上传的图片保存到uploads/
目录下,并根据上传结果返回不同的字符串。
通过以上三个步骤,我们可以解决Android上传图片到php服务器总是失败的问题。