硬编码字符串工作,输入字符串不

时间:2011-05-31 02:28:09

标签: java string file increment

简而言之,这就是我要做的事情:

我想读取一个文件并检测符号后面的字符是数字还是单词。如果是数字,我想删除它前面的符号,将数字转换为二进制文件并将其替换为文件。如果它是一个单词,我想首先将字符设置为数字16,但是,如果使用另一个单词,我想将1添加到原始数字并继续循环直到它到达输入的结尾。

当我硬编码我想要输入和读取的字符串时:

String input = "@5\n@word1\n@word2\n@word1\n@6";
String[] lines = input.split("\n"); // divide up the array

或者:

@5
@word1
@word2
@word1
@6

然后它输出我想要输出的内容:

101
10000
10001
10000
110

但是当我输入anyLines [i](包含文件信息的数组,如果选择了另一个文件则可以更改):

String input = anyLines[i];
String[] lines = input.split("\n");

对于相同的数据,突然它输出的输出不正确:

101
10000
10000 <-- PROBLEM - should be 10001
10000
110  

现在问题是wordValue没有增加。在硬编码字符串中,wordValue正确递增。

这是我的整体方法:

try {
    ReadFile files = new ReadFile(file.getPath());
    String[] anyLines = files.OpenFile();

    int i;

    //  test if the program actually read the file
    for (i=0; i<anyLines.length; i++) {
        String input = anyLines[i];
        String[] lines = input.split("\n");

        int wordValue = 16; // to keep track words that are already used
        Map<String, Integer> wordValueMap = new HashMap<String, Integer>();

        for (String line : lines) {
            // if line doesn't begin with "@", then ignore it
            if ( ! line.startsWith("@")) {
                continue;
            }

            // remove &
            line = line.substring(1);

            Integer binaryValue = null;

            if (line.matches("\\d+")) {
                binaryValue = Integer.parseInt(line);
            }
            else if (line.matches("\\w+")) {
                binaryValue = wordValueMap.get(line);

                // if the map doesn't contain the word value,
                // then assign and store it
                if (binaryValue == null) {
                    binaryValue = wordValue;
                    wordValueMap.put(line, binaryValue);
                    wordValue++;
                }
            }

            // I'm using Commons Lang's 
            // StringUtils.leftPad(..) to create the zero padded string
            System.out.println(Integer.toBinaryString(binaryValue));
        }
    }
}

你能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:1)

乍一看代码看起来还不错。你最好的选择是在处理它们时打印掉这些线条,看它们是不是......奇怪......格式:

for (String line : lines)
    System.out.println ("[" + line + "]");

事实上,我会全力以赴,并在每行更改某些内容(打印序列号和更改的内容)之后放置一个print语句,以确保没有意外的效果:

类似的东西:

else if (line.matches("\\w+")) {
    binaryValue = wordValueMap.get(line);
    System.out.println ("A: binval set to " + binaryValue);

    // if the map doesn't contain the word value,
    // then assign and store it
    if (binaryValue == null) {
        binaryValue = wordValue;
        System.out.println ("B: binval set to " + binaryValue);
        wordValueMap.put(line, binaryValue);
        System.out.println ("C: put " + binaryValue +
            ", now " + wordValueMap.get(line));
        wordValue++;
        System.out.println ("C: wordval set to " + wordValue);
    }
}

虽然您也可以选择使用调试工具,但这种printf调试方法通常非常有用: - )