草庐IT

php - Android:无法使用 php 脚本将图像上传到远程 MySql 数据库

coder 2023-10-14 原文

我在这个问题上花了 2 周时间。我写了下面的代码(Android 和 php)。似乎还可以,但无法正常工作或无法正常工作。客户端 Android 似乎发送了一些东西服务器端收到了一些东西但我不知道它是什么。

在客户端 Android 和服务器上的代码下方。

谢谢。

…
Uri uriTarget = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, new    ContentValues());
uri_Target=uriTarget.toString();
OutputStream imageFileOS;
try 
{
imageFileOS = getContentResolver().openOutputStream(uriTarget);
imageFileOS.write(arg0);
imageFileOS.flush();
imageFileOS.close();

Toast.makeText(ActSismicoCamera_New.this, "Image saved: " + uriTarget.toString(),Toast.LENGTH_LONG).show(); 
SharedPreferences preferences = getPreferences(MODE_PRIVATE);
SharedPreferences.Editor editor = preferences.edit();
editor.putString("percorso",uri_Target);            
editor.commit(); 
inviaPosizione(uri_Target); 
} 
catch (FileNotFoundException e) 
{           
e.printStackTrace();
} 
catch (IOException e) 
{           
e.printStackTrace();
}
camera.startPreview();
}
…
--------------------------------------------------------------------------------------
private void inviaPosizione(String percorso)
{
InputStream is=null;
try
{
String uri_Target;
SharedPreferences preferences = getPreferences(MODE_PRIVATE);
uri_Target = preferences.getString("percorso", null);          
Uri imageUri = Uri.parse(uri_Target);          
String filenamelastPhoto;
filenamelastPhoto = getLastImage(imageUri);        
File sdCard = Environment.getExternalStorageDirectory();
File directory = new File (sdCard.getAbsolutePath()+ "/DCIM/Camera/");
File immagine = new File(directory, filenamelastPhoto); //or any other format supported
if(immagine.exists()) 
{
 Toast.makeText(ActSismicoCamera_New.this, "ESISTE = "+immagine, Toast.LENGTH_LONG).show();        
}
Bitmap bitmapOrg = BitmapFactory.decodeFile(immagine.toString()); 
    ByteArrayOutputStream bao = new ByteArrayOutputStream();
try
{                  
  bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 60, bao);             
  byte [] ba = bao.toByteArray();
  Toast.makeText(ActSismicoCamera_New.this, "inviaPosizione Valore ba= " + ba, Toast.LENGTH_LONG).show();
  int flag = 1;
  String ba1 = Base64.encodeBytes(ba,flag);
  ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
  nameValuePairs.add(new BasicNameValuePair("tag","registra"));
  nameValuePairs.add(new BasicNameValuePair("media",ba1));
  StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
  StrictMode.setThreadPolicy(policy);
  HttpClient httpclient = new DefaultHttpClient();
  httpclient.getParams().setParameter(CoreProtocolPNames.USER_AGENT, "Custom user agent");
  HttpPost httppost = new
  HttpPost("http://xxxxx.org/AndActSismicoUploadFile.php");
               httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
               HttpResponse response = httpclient.execute(httppost);
               HttpEntity entity = response.getEntity();
               is = entity.getContent();
           }
           catch(Exception e)
           {
               Toast.makeText(ActSismicoCamera_New.this, "inviaPosizione Exception su HttpClient: " + e.toString(), Toast.LENGTH_LONG).show();
           }
           try 
           {
       BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
       StringBuilder sb = new StringBuilder();
       String line = null;
       while ((line = reader.readLine()) != null) 
       {
        sb.append(line + "\n");
       }
       is.close();
       json = sb.toString();                         
    } 
            catch (Exception e) 
    {
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }

     }
     catch (Exception e) 
{           
       e.printStackTrace();
}               
}

PHP 脚本

<?php     
require_once 'DB_Funzioni.php';
if (isset($_POST['tag']) && $_POST['tag'] != '') 
{  
$tag = $_POST['tag'];
$oggetto = $_POST['media'];

if (isset($_POST['media'])) 
    {   
    header('Content-Type: bitmap;charset-utf-8');                       
if(move_uploaded_file($_FILES["media"]["tmp_name"],"immagini/" . $_FILES["media"]["name"])) 
    {
        echo "The file ". $_FILES['media']['name']." has been uploaded";
        $info="The file ". basename( $_FILES['media']['name'])." has been uploaded";
        mail ($destinatario, $ogg, $info);
    }
    else
    {
        $info="Problema!";
        mail ($destinatario, $ogg, $info);
        switch ($_FILES['media']['error'])
        {  
                    case 1:
        echo "The uploaded file exceeds the upload_max_filesize directive in php.ini";
        $info="The uploaded file exceeds the upload_max_filesize directive in php.ini!";
        mail ($destinatario, $ogg, $info);
        break;
        case 2:
        echo "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form";
        $info="The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form!";
        mail ($destinatario, $ogg, $info);
        break;
        case 3:
        echo "Only part of the file was uploaded";                     
        $info="Only part of the file was uploaded!";
        mail ($destinatario, $ogg, $info);
        break;
        case 4:
        echo "No file was uploaded";
        $info="No file was uploaded!";
        mail ($destinatario, $ogg, $info);
        break;             
        case 6:
        echo "Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3";
        $info="Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3!";
        mail ($destinatario, $ogg, $info);
        break; 
        case 7:
        echo "Failed to write file to disk. Introduced in PHP 5.1.0";
        $info="Failed to write file to disk. Introduced in PHP 5.1.0!";
        mail ($destinatario, $ogg, $info);
        break;
        case 8:
        echo "A PHP extension stopped the file upload";
        $info="A PHP extension stopped the file upload!";
        mail ($destinatario, $ogg, $info);
        break;                       
        }
    }

    $response = array("tag" => $tag, "success" => 0, "error" => 0);
        $db = new DB_Functions();       
    $fileName = $_FILES['media']['name'];
    $tmpName = $_FILES['media']['tmp_name'];
    $fileSize = $_FILES['media']['size'];
    $fileType = $_FILES['media']['type'];       
    $fp      = fopen($tmpName, 'r');
    $content = fread($fp, filesize($tmpName));
    $content = addslashes($content);
    move_uploaded_file($_FILES["media"]["tmp_name"],"immagini/" . $_FILES["media"]["name"]);
    fclose($fp);

    if(!get_magic_quotes_gpc())
    {
        $fileName = addslashes($fileName);
    }       
    $file = $db->storeFile($fileName);  
    if ($file)
    {
        $response["success"] = 1;
        //$response["filename"]["id"] = $file["filename"];
        $response["filename"]= $tmpName ;
        echo json_encode($response);
            } 
    Else
    {
                 // user failed to store
                $response["error"] = 1;
                //$response["error_msg"] = "Error occured in Insert";
                $response["error_msg"] = mysql_error();
                echo json_encode($response);
        }
  }
  Else
    {
               $response = array("tag" => $tag, "success" => 0, "error" => 0);                  
                $response["error"] = 1;
                $response["error_msg"] = "Media vuoto";                 
                echo json_encode($response);
        }            
}
//mysql_close();
?>

最佳答案

这不是一个完整的答案......我将在接下来的过程中完成这个答案......

首先,我建议您检查是否获得了您应该获得的发布数据。请在顶部之后插入:

if (isset($_POST['tag']) && $_POST['tag'] != '') 
{  

...

file_put_contents ("mydebugdata.txt",json_encode($_POST));

这应该将脚本接收到的数据转储到文件“mydebugdata.txt”中...... json_encode() 为 $_POST 提供了一些结构……所以您可以读取数据……

然后尝试保存图片并将 mydebugdata.txt 的内容发布到这里......

关于php - Android:无法使用 php 脚本将图像上传到远程 MySql 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14851543/

有关php - Android:无法使用 php 脚本将图像上传到远程 MySql 数据库的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 使用 RubyZip 生成 ZIP 文件时设置压缩级别 - 2

    我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看ruby​​zip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d

  3. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  4. ruby-on-rails - 使用 Ruby on Rails 进行自动化测试 - 最佳实践 - 2

    很好奇,就使用ruby​​onrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提

  5. ruby - 在 Ruby 中使用匿名模块 - 2

    假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于

  6. ruby - 使用 ruby​​ 和 savon 的 SOAP 服务 - 2

    我正在尝试使用ruby​​和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我

  7. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  8. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  9. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  10. ruby - 使用 ruby​​ 将 HTML 转换为纯文本并维护结构/格式 - 2

    我想将html转换为纯文本。不过,我不想只删除标签,我想智能地保留尽可能多的格式。为插入换行符标签,检测段落并格式化它们等。输入非常简单,通常是格式良好的html(不是整个文档,只是一堆内容,通常没有anchor或图像)。我可以将几个正则表达式放在一起,让我达到80%,但我认为可能有一些现有的解决方案更智能。 最佳答案 首先,不要尝试为此使用正则表达式。很有可能你会想出一个脆弱/脆弱的解决方案,它会随着HTML的变化而崩溃,或者很难管理和维护。您可以使用Nokogiri快速解析HTML并提取文本:require'nokogiri'h

随机推荐