嘿,我对Firebase和编程来说还比较陌生,因此,如果这是一个愚蠢的问题,对不起。我正在努力寻找食谱
上面是firebase的数据树,下面是MainActivity的代码
package com.example.myapplicationdatatest;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import com.google.firebase.FirebaseApp;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
public class MainActivity extends AppCompatActivity {
private TextView category;
private TextView cookinTime;
private TextView description;
private TextView ingridients;
private TextView nameOfRecipe;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState );
setContentView( R.layout.activity_main );
category = findViewById( R.id.category );
cookinTime = findViewById( R.id.cookingTime );
description = findViewById( R.id.description );
ingridients = findViewById( R.id.ingridients );
nameOfRecipe = findViewById( R.id.nameOfRecipe );
FirebaseApp.initializeApp( getApplicationContext() );
FirebaseDatabase.getInstance().getReference().child( "recipes" )
.addListenerForSingleValueEvent( new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
Recipe recipe = snapshot.getValue( Recipe.class );
category.setText( recipe.getCategory() );
cookinTime.setText( recipe.getCookingtime() );
description.setText( recipe.getDescription() );
ingridients.setText( recipe.getIngredients() );
nameOfRecipe.setText( recipe.getIngredients() );
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
} );
}
}
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/category"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/cookingTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/ingridients"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/nameOfRecipe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
食谱类
package com.example.myapplicationdatatest;
public class Recipe {
private String category;
private String cookingtime;
private String description;
private String ingredients;
private String nameOfRecipe;
public Recipe() {};
public Recipe(String category, String cookingtime, String description,String ingredients, String nameOfRecipe) {
this.category=category;
this.cookingtime=cookingtime;
this.description=description;
this.ingredients=ingredients;
this.nameOfRecipe=nameOfRecipe;
}
public String getCategory() {
return category;
}
public String getCookingtime() {
return cookingtime;
}
public String getDescription() {
return description;
}
public String getIngredients() {
return ingredients;
}
public String getNameOfRecipe() {
return nameOfRecipe;
}
}
和例外
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.myapplicationdatatest, PID: 6400
com.google.firebase.database.DatabaseException: Failed to convert value of type java.util.HashMap to String
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertString(com.google.firebase:firebase-database@@19.1.0:408)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToClass(com.google.firebase:firebase-database@@19.1.0:199)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToType(com.google.firebase:firebase-database@@19.1.0:178)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.access$100(com.google.firebase:firebase-database@@19.1.0:47)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper$BeanMapper.deserialize(com.google.firebase:firebase-database@@19.1.0:586)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper$BeanMapper.deserialize(com.google.firebase:firebase-database@@19.1.0:545)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertBean(com.google.firebase:firebase-database@@19.1.0:415)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToClass(com.google.firebase:firebase-database@@19.1.0:214)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertToCustomClass(com.google.firebase:firebase-database@@19.1.0:79)
at com.google.firebase.database.DataSnapshot.getValue(com.google.firebase:firebase-database@@19.1.0:203)
at com.example.myapplicationdatatest.MainActivity$1.onDataChange(MainActivity.java:53)
at com.google.firebase.database.Query$1.onDataChange(com.google.firebase:firebase-database@@19.1.0:179)
at com.google.firebase.database.core.ValueEventRegistration.fireEvent(com.google.firebase:firebase-database@@19.1.0:75)
at com.google.firebase.database.core.view.DataEvent.fire(com.google.firebase:firebase-database@@19.1.0:63)
at com.google.firebase.database.core.view.EventRaiser$1.run(com.google.firebase:firebase-database@@19.1.0:55)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:214)
at android.app.ActivityThread.main(ActivityThread.java:7356)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:930)
我真的不知道如何检索这些多个分支,特别是因为我想添加多个食谱
感谢您的帮助
答案 0 :(得分:3)
您遇到以下错误:
com.google.firebase.database.DatabaseException:无法将类型java.util.HashMap的值转换为String
因为您的Recipe
类中的字段类型与数据库中的属性类型不同。您在Recipe
类中有一个名为ingredients
的字段,该字段的类型为String
,而在数据库中,我看到它是一个Map<String, Object>
,而不是强>正确,因此出现错误。字段的类型必须匹配。除此之外,您的数据库中还有一个名为amountOfIngredients
的属性,实际上Recipe
类中缺少该属性。要解决此问题,请根据数据库中存在的属性的类型对Recipe
类进行建模,然后将解决您的问题。
答案 1 :(得分:1)
我认为您要尝试做的就是获取所有食谱,并逐一检查。 如果是这种情况,请尝试以下操作:
FirebaseDatabase.getInstance().getReference().child("recipes")
.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot snapshot : dataSnapshot.getChildren()) {
Recipe recipe = snapshot.getValue(Recipe.class);//I'm assuming you have a Recipe class
//Do something with the data
}
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
在您的食谱类ingredients
中不是字符串。
这是一个哈希图。
尝试:
public class Recipe {
private String category;
private String cookingtime;
private String description;
private HashMap<String, String> ingredients;
private String nameOfRecipe;
public Recipe() {};
public Recipe(String category, String cookingtime, String description,HashMap<String, String>ingredients, String nameOfRecipe) {
this.category=category;
this.cookingtime=cookingtime;
this.description=description;
this.ingredients=ingredients;
this.nameOfRecipe=nameOfRecipe;
}
public String getCategory() {
return category;
}
public String getCookingtime() {
return cookingtime;
}
public String getDescription() {
return description;
}
public HashMap<String, String> getIngredients() {
return ingredients;
}
public String getNameOfRecipe() {
return nameOfRecipe;
}
}