4

在我们最近从 WSED 5.2 迁移到 RAD 7.5 时,我们的代码中出现了一个破坏应用程序的错误。

因此,RAD 7.5 标记它,所有在类头的声明(公共类 FoStringWriter 扩展 StringWriter 实现 FoWriter {)

- Exception IOException in throws clause of Writer.append(CharSequence, int, int) is not compatable with StringWriter.append(CharSequence, int, int)
- Exception IOException in throws clause of Writer.append(char) is not compatable with StringWriter.append(char)
- Exception IOException in throws clause of Writer.append(CharSequence) is not compatable with StringWriter.append(CharSequence)

我在网上找到的每篇文献都指出这是 Eclipse 中的一个“错误”,但我的开发人员应该已经拥有最新版本的 Eclipse 软件。所以我不知道该怎么做这个错误。有没有我还没有更新到的来自 IBM 的修复程序?或者是否有可以纠正此错误的代码修复程序?

public class FoStringWriter extends StringWriter implements FoWriter {

public void filteredWrite(String str) throws IOException {
FoStringWriter.filteredWrite(str,this);
}

public static void filteredWrite(String str, StringWriter writer) throws IOException {
    if (str == null) str = "";
    TagUtils tagUtils = TagUtils.getInstance();
    str = tagUtils.filter(str);
    HashMap dictionary = new HashMap();
    dictionary.put("&#","&#");
    str = GeneralUtils.translate(str,dictionary);
    writer.write(str);      
}

}

编者注:

这个运行的过程会为我们的应用程序创建 PDF 文档。在 WSED 5.5 中,它工作正常,有一些错误,但没有任何东西阻止 PDF 被写入。

4

1 回答 1

1

拍我的额头,因为这是一个看似完全显而易见的答案解决的另一个“错误”。

只需添加列出的引发“错误”的方法,我就可以消除调用此类时引发的错误。

直接从 StringWriter 复制它们确实有效,无需以任何方式编辑它们。

public StringWriter append(char c) {
    write(c);
    return this;
}

public StringWriter append(CharSequence csq) {
    if (csq == null)
        write("null");
    else
        write(csq.toString());
        return this;
}

public StringWriter append(CharSequence csq, int start, int end) {
    CharSequence cs = (csq == null ? "null" : csq);
    write(cs.subSequence(start, end).toString());
        return this;
}

我很高兴这行得通,但同时也很沮丧,因为它是如此简单的修复,以至于花了将近整整一周的时间才弄清楚。

我想这个错误背后的原因可能是实现中的冲突。FoStringWriter 扩展了 StringWriter,但它本身扩展了 Writer,并且两个类都有自己的“附加”方法,这些方法相互覆盖。通过显式创建它们,可以解决此错误。

于 2013-11-20T19:05:57.193 回答