您好我正在制作一个将图片发送到服务器的应用程序。 Apache弃用功能的版本可以使用,但我不知道为什么我无法获得更新的解决方案。有谁知道错误在哪里?
最新解决方案:它不会在logcat中出错,但是当我去服务器时,没有上传任何内容。起初我认为错误在于我如何传递参数,但我尝试了几种不同的解决方案,比如使用Uri.builder,使用HashMap和stringBuilder编码params的方法,传递像这样的字符串...和NOTHING工作。我需要帮助这真的让我发疯了
@Override
protected Void doInBackground(Void... params) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
String encodedImage = Base64.encodeToString(byteArrayOutputStream.toByteArray(), Base64.DEFAULT);
try {
byteArrayOutputStream.flush();
byteArrayOutputStream.close();
}catch (IOException e){
}
HttpURLConnection connection;
try {
String urlSt = "http://phoenixcoding.tk/SavePicture.php";
URL url = new URL(urlSt);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
/*Uri.Builder builder = new Uri.Builder()
.appendQueryParameter("name", name)
.appendQueryParameter("image", encodedImage);
String query = builder.build().getEncodedQuery();*/
OutputStream os = connection.getOutputStream();
BufferedWriter writer = new BufferedWriter(
new OutputStreamWriter(os, "UTF-8"));
writer.write("name=example&image=" + encodedImage);
writer.flush();
writer.close();
os.close();
connection.connect();
}catch (IOException e){
e.printStackTrace();
}
return null;
}
以前的解决方案:它运作良好
@Override
protected Void doInBackground(Void... params) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
String encodedImage = Base64.encodeToString(byteArrayOutputStream.toByteArray(), Base64.DEFAULT);
try {
byteArrayOutputStream.flush();
byteArrayOutputStream.close();
}catch (IOException e){
}ArrayList<NameValuePair> dataToSend = new ArrayList<NameValuePair>();
dataToSend.add(new BasicNameValuePair("name", name));
dataToSend.add(new BasicNameValuePair("image", encodedImage));
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://phoenixcoding.tk/SavePicture.php");
try{
post.setEntity(new UrlEncodedFormEntity(dataToSend));
client.execute(post);
}catch (Exception e){
e.printStackTrace();
}
return null;
}
SavePhoto.php文件:
<?php
$name = $_POST["name"];
$image = $_POST["image"];
$decodedImage = base64_decode("$image");
file_put_contents("pictures/" . $name . ".JPG", $decodedImage);
&GT;
答案 0 :(得分:1)
在你的php代码中试试这个:
if( isset($_POST["image"]) && !empty($_POST["image"])){
$profile_pic = '';
$data= $_POST['image'];
$data = str_replace('data:image/png;base64,', '', $data);
$data = str_replace(' ', '+', $data);
$binary=base64_decode($data);
header('Content-Type: bitmap; charset=utf-8');
// Images will be saved under 'www/pictures' folder
$new_name = $_POST['name'] . '.png';
$success =file_put_contents('pictures/'.$new_name,$binary);
$profile_pic = $new_name;
}
答案 1 :(得分:1)
我猜这行有问题: - $decodedImage = base64_decode("$image");
你必须这样写$decodedImage = base64_decode($image);
调试执行此操作: -
<?php
file_put_contents("post.txt",print_r($_POST,true));
$name = $_POST["name"];
.....
?>
将其视为: - http://phoenixcoding.tk/post.txt
(如果文件未保存,则存在权限问题,在这种情况下,使目录“test”并授予其权限755,即使它不起作用将该目录设为777,然后您的URL将为{{3} })
你要做的是收集所有传入的$_POST
文件然后你会知道什么帖子数据来了这将澄清错误的位置,在android端或php端如果帖子没问题那么android代码就可以了并且问题是在PHP代码中。
我希望它能帮助您解决问题...
感谢
答案 2 :(得分:0)
感谢大家的回答,我终于成功了。我不知道为什么会这样,但在打开连接后添加一个InputStream对象后,图片正确上传。我所做的只是添加以下几行:
InputStream is = connection.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder str = new StringBuilder();
String strLine;
while ((strLine = reader.readLine()) != null) {
str.append(strLine + "\n");
}
is.close();