“Android Java wie man Cursor löscht oder schließt” Code-Antworten

Android Java wie man Cursor löscht oder schließt

Cursor cursor = db.rawQuery(...);
try {
  while (cursor.moveToNext()) {
    ...
  }
} finally {
  cursor.close();
}
Narongdetch

Android Java wie man Cursor löscht oder schließt

public String getRealPathFromURI(Context context, Uri contentUri) {
 Cursor cursor = null;
 try { 
  String[] proj = { MediaStore.Images.Media.DATA };
  cursor = context.getContentResolver().query(contentUri,  proj, null, null, null);
  int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
  cursor.moveToFirst();
  return cursor.getString(column_index);
 } finally {
  if (cursor != null) {
   cursor.close();
  }
 }
}
Narongdetch

Ähnliche Antworten wie “Android Java wie man Cursor löscht oder schließt”

Fragen ähnlich wie “Android Java wie man Cursor löscht oder schließt”

Weitere verwandte Antworten zu “Android Java wie man Cursor löscht oder schließt” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen