我想知道使用什么代码将 double[] 数组转换为 string[] 数组
问问题
17505 次
2 回答
6
您需要创建一个与原始数组大小相等的目标数组,并对其进行迭代,逐个元素转换。
例子:
double[] d = { 2.0, 3.1 };
String[] s = new String[d.length];
for (int i = 0; i < s.length; i++)
s[i] = String.valueOf(d[i]);
于 2012-07-05T23:14:22.720 回答
1
如前所述,您必须迭代并将每个项目从双精度转换为字符串。
或者,也可以避免显式迭代并执行以下操作:
// source array
Double[] d_array = new Double[] { 1, 2, 3, 4 };
// create a string representation like [1.0, 2.0, 3.0, 4.0]
String s = Arrays.toString(d_array);
// cut off the square brackets at the beginning and at the end
s = s.substring(1, s.length - 1);
// split the string with delimiter ", " to produce an array holding strings
String[] s_array = s.split(", ");
于 2012-07-05T23:42:54.827 回答