我在将二维字符串数组从一个活动传递到另一个活动时遇到问题 我尝试了一些代码......但它们显示了一些错误
我的字符串数组是:
String[][] commuterDetails=new String[2][5];
commuterDetails=
{
{ "a", "b","c", "d","e" },
{"f", "g","h", "i","j" }
};
我尝试了一些代码
在第一个活动中
Intent summaryIntent = new Intent(this, Second.class);
Bundle b=new Bundle();
b.putSerializable("Array", commuterDetails);
summaryIntent.putExtras(b);
startActivity(summaryIntent);
在第二个活动
Bundle b = getIntent().getExtras();
String[][] list_array = (String[][])b.getSerializable("Array");
但它显示错误
Caused by: java.lang.ClassCastException: [Ljava.lang.Object;
我是android新手,请帮助我