如何使用java将此字符串转换为二维数组

时间:2010-05-17 07:16:46

标签: java

我的文字文件为

    0B85     61
    0B86     6161
    0B86     41
    0B87     69
    0B88     6969
    0B88     49
    0B89     75
    0B8A     7575
    0B8F     6565

我想把这个字符串写成二维数组。 (即)String read[0][0]=0B85String read[0][1]=61。 请使用java建议任何想法。提前谢谢。

2 个答案:

答案 0 :(得分:6)

这样的工作:

String s = "0B85 61 0B86 6161 0B86 41 0B87 69 0B88"
    + " 6969 0B88 49 0B89 75 0B8A 7575 0B8F 6565";
String[] parts = s.split(" ");
String[][] table = new String[parts.length / 2][2];
for (int i = 0, r = 0; r < table.length; r++) {
    table[r][0] = parts[i++];
    table[r][1] = parts[i++];
}
System.out.println(java.util.Arrays.deepToString(table));
// prints "[[0B85, 61], [0B86, 6161], [0B86, 41], [0B87, 69],
//   [0B88, 6969], [0B88, 49], [0B89, 75], [0B8A, 7575], [0B8F, 6565]]

基本上你将split(" ")长字符串分成几部分,然后将这些部分排列成一列String[][] table

尽管如此,对此最好的解决方案是为每行设置一个Entry类,并且List<Entry>而不是String[][]


  

注意:格式化,保持在上面,但是以下是需要的

如果columns.txt包含以下内容:

    0B85     61
    0B86     6161
    0B86     41
    0B87     69
    0B88     6969
    0B88     49
    0B89     75
    0B8A     7575
    0B8F     6565

然后,您可以使用以下内容将它们排列为2列String[][]

import java.util.*;
import java.io.*;
//...

    List<String[]> entries = new ArrayList<String[]>();
    Scanner sc = new Scanner(new File("columns.txt"));
    while (sc.hasNext()) {
        entries.add(new String[] { sc.next(), sc.next() });
    }
    String[][] table = entries.toArray(new String[0][]);
    System.out.println(java.util.Arrays.deepToString(table));

我会重申List<Entry>String[][]要好得多。

另见

  • Effective Java 2nd Edition,Item 25:Prefer lists to arrays
  • Effective Java 2nd Edition,Item 50:避免使用其他类型更合适的字符串

答案 1 :(得分:0)

像(伪代码):

parts = yourData.split()
out = new String[ parts.length/2 ][2];
int j=0;
for i=0, i < parts.length -1, i+2:
  out[j][0] =  parts[i]
  out[j][1] = parts[i+1] 
  j++