4

我正在做一个课堂项目,我必须为我们在课堂上看到的指令集构建一个两遍汇编程序。

在第一个 pass 函数中,我的一段代码如下所示:

        //If the fourth character is a comma, then it follows that the line contains a label.
        if (line.indexOf(',') == 3) {              
            //Store symbol in address-symbol table together with value of location counter
            String symbolTableLine = line.substring(0,3) + " " + String.format("%03X", Integer.toHexString(locCounter)) + "\r\n";                
            symbolTable[symbolTablePos] = symbolTableLine;
            writerSymbTable.write(symbolTableLine);
            //Increment the location counter and the current position in symbol table
            locCounter++;
            symbolTablePos++;

我的问题在于以下函数调用:

String.format("%03X", Integer.toHexString(locCounter))

这样做的目的是将位置计数器转换为十六进制字符串(例如“AA”、“0”或“F”)并添加零作为占位符,直到十六进制字符串长为三位数(“0AA”、“000 ", "00F")

问题是我收到了这个异常:

 Exception in thread "main" java.util.IllegalFormatConversionException: x != java.lang.String

我知道这意味着由于某种原因它没有接收十六进制字符串。但我似乎无法弄清楚为什么那不是十六进制字符串,我的意思是我正在使用 Integer.toHexString()...

任何帮助将不胜感激,谢谢。如果这还不足以让您看到代码,那么如果您愿意,我可以发布更多代码。

4

1 回答 1

7

您无需调用toHexString(),因为"X"informat()将负责转换:

String.format("%03X", locCounter)
于 2013-03-21T19:33:43.470 回答