Web サーバーの MySQL フィールドから BLOBPHP
を返すために使用する Java から URL にデータを投稿しています。json_encode(d)
ここで、この返されたデータを (InputStream
またはを使用してgetBytes
) 使用して を作成し、を使用してこのビットマップに をbitmap
設定すると、空のイメージビューが得られます。つまり、またはNULLを返します。ImageView
setImageBitmap
decodeByteArray
decodeStream
インターネット全体でこれを検索したところ、多くの開発者がこの問題に直面していることがわかりました。できるだけ早く助けてください。
ありがとうございました。
テキストの詳細を取得するのに問題はありませんが、画像の取得は問題です。これは、Java と PHP のコードを抜粋したものです。
これは私のJavaのonCreateメソッドです..
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.loginlayout);
TextView tv1, tv2, tv3, tv4, tv5;
imageview = (ImageView) findViewById(R.id.imageView1);
button = (Button) findViewById(R.id.button1);
tv1 = (TextView) findViewById(R.id.dispuser);
tv2 = (TextView) findViewById(R.id.tv2);
tv3 = (TextView) findViewById(R.id.tv3);
tv4 = (TextView) findViewById(R.id.tv4);
tv5 = (TextView) findViewById(R.id.tv5);
SharedPreferences userDetails = this.getSharedPreferences("logindetails", MODE_PRIVATE);
String username = userDetails.getString("username", "");
String password = userDetails.getString("password", "");
button.setOnClickListener(this);
httpclient = new DefaultHttpClient();
httppost = new HttpPost("myurl");
try{
nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("username", username));
nameValuePairs.add(new BasicNameValuePair("password", password));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
response = httpclient.execute(httppost);
if(response.getStatusLine().getStatusCode() == 200){
entity = response.getEntity();
if(entity != null) {
InputStream instream = entity.getContent();
JSONObject jsonResponse = new JSONObject(convertStreamToString(instream));
String sex = jsonResponse.getString("Sex");
String age = jsonResponse.getString("Age");
String name = jsonResponse.getString("Name");
String phone = jsonResponse.getString("Phone");
String pic = jsonResponse.getString("picture");
byte[] image = Base64.encodeBytesToBytes(pic.getBytes("UTF-8"));
imageview.setImageBitmap(BitmapFactory.decodeByteArray(image, 0, image.length));
tv1.setText("Welcome " + username);
tv2.setText("Your is Name: " + name);
tv3.setText("Your phone " + phone);
tv4.setText("Your a " + sex );
tv5.setText("Your age is " + age);
}
}
}
catch (Exception e) {
e.printStackTrace();
}
finally {
httppost.abort();
}
}
そしてPHP側で..
<?
include 'connect.php';
$username = $_POST['username'];
$password = $_POST['password'];
$query = mysql_query("SELECT * FROM applogin WHERE username = '$username' AND password = '$password'");
$num = mysql_num_rows($query);
if($num == 1)
{
while($list = mysql_fetch_assoc($query))
{
$output = $list;
}
echo json_encode($output);
mysql_close();
}
?>