Mysql
 sql >> Database >  >> RDS >> Mysql

Come caricare un blob lungo (immagine) sul database mysql usando java e recuperarlo in php?

 /**
*Get profile_pic*/
public function callmethod($userId){
$stmt = $this->conn->prepare("SELECT profile_pic FROM users WHERE unique_id=?");
$stmt->bind_param('s',$userId); 
//$result = mysql_query($query) or die(mysql_error()); 
//$photo = mysql_fetch_array($result); 
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($profile_pic);
while ($stmt->fetch()) {
    echo "<img src='data:image/jpeg;base64,".$profile_pic."' />";
}
 //$obj->picture = base64_encode($profile_pic);
//echo $obj;


}

ok prova questo codice this.you't needheader("Content-Type: image/jpeg"); funzione. questo è un errore nel tuo codice php. questo codice creerà un tag img con basc64.

ora per la parte Android.

cambialo in php.

while ($stmt->fetch()) {
    echo "<img src='data:image/jpeg;base64,".$profile_pic."' />";
}

a

while ($stmt->fetch()) {
    echo $profile_pic;
}

e questa sarebbe la tua parte Android.

byte[] decodedString = Base64.decode(strBase64, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length); 
image.setImageBitmap(decodedByte);