0

可能重复:
如何比较 Java 中的字符串?

考虑以下二维字符串数组 a[5][5],

我将三个值存储在数组“a”的前三个块中。当我打印我的数组时,我得到以下输出。

ABC

null

DEF

null

这些值存在于一个文件中,我检索这些值并将它们存储在一个字符串数组中。

文件(“file.txt”)看起来像这样,

A B C

D E F

这是我的代码,

宣言:

static String [][] a= new String [4][4];
public static String newline = System.getProperty("line.separator");
private static int i,j;

主要代码:

i=j=0;
        FileInputStream fin;
        fin = new FileInputStream("file.txt");
        DataInputStream in = new DataInputStream (fin);
        BufferedReader br = new BufferedReader (new InputStreamReader (in));
        while((c = (char)br.read()) != (char)-1)
        {
            if (c != '  ' && c != (char)'\n')
            {
                a[i][j] = Character.toString(c);
                j++;
            }
            else if (c == '\n')
            {
                i++;
                j = 0;
            }
        }
        for (int i=0;i<5;i++)
        {
            for (int j=0;j<5;j++)
            {
                if (newline.equals(a[i][j]))
                {
                    mainArray[i][j] = null;
                }
            }
        }

这是我打印数组的方式,

        for (int i=0;i<5;i++)
        {
            for (int j=0;j<5;j++)
            {
                System.out.print(a[i][j]);
            }
           System.out.println("");
        }

我想要的输出应该是,

ABCnullnull

DEFnullnull

有没有更好的方法来解决这个问题?

4

3 回答 3

1

BufferedReader 有一个 readLine() 方法,该方法将返回一个字符串,其中包含 \n 或 \r 之前的所有字符。它还在流的末尾返回 null。

FileInputStream fin;
fin = new FileInputStream("file.txt");
DataInputStream in = new DataInputStream (fin);
BufferedReader br = new BufferedReader (new InputStreamReader (in));
List<String> list = new ArrayList<String>();
String line;
while ((line= br.readLine())!=null)
{
  list.add(line);  
}

这将处理任意数量的返回和任意长度的字符串。

或者,如果您必须将每一行作为和数组

        FileInputStream fin;
        fin = new FileInputStream("file.txt");
        DataInputStream in = new DataInputStream(fin);
        BufferedReader br = new BufferedReader(new InputStreamReader(in));
        List<char[]> list = new ArrayList<char[]>();
        String line;
        while ((line = br.readLine()) != null) {
            if(!line.isEmpty()) list.add(line.toCharArray());
        }

读取您的文件应导致列表大小为两个,每个包含 5 个字符的数组。['A','','B','','C'] 然后 ['D','','E','','F']

于 2012-09-11T16:21:26.600 回答
0

尝试

public static String newline = System.getProperty("line.separator");
for (int i=0;i<5;i++)
{
    if (newline.equals(a[i]))
    {
        a[i] = null;
    }
}
于 2012-09-11T16:22:17.507 回答
0

编辑答案:

通过阅读您的回复并查看您的预期输出,您最好做这样的事情......

pseudo-code
read entire line into String array index
Before printing, check length of String (a[i].length)
If length is less than 5, add 'null' to the end of the String for every character less than 5

Thus:
if(a[i].length < 5)
{
  int index = 5 - a[i].length;
  for( ; index > 0; index --)
  {
     a[i].concat("null");
  }
}

原始答案............不确定我的评论是否已发送给您。您可能只是索引太远了。

尝试

for(int i = 0; i < 4; i++)
   System.print(a[i]);
于 2012-09-11T16:48:01.003 回答