我有一个活动,其中从 中检索值ResultSet
并将它们存储在一个数组中:
flat[i] = rs.getDouble(3);
flng[i] = rs.getDouble(4);
i++;
Intent i = new Intent(MapID.this, map.class);
Bundle bundle=new Bundle();
bundle.putDoubleArray("Lat", flat);
bundle.putDoubleArray("Long", flng);
i.putExtras(bundle);
startActivity(i);
在另一堂课上,我通过以下方式获取值:
Bundle bundle = getIntent().getExtras();
flat = bundle.getDoubleArray("Lat");
我想将值转换为字符串,例如:
String xx = new Double(flat).toString();