1

我得到了这个html语法,它充满了 a 的帮助MessageFormat

private final String WRAPPABLE_HTML = "<html><head>"
        + "<style>div:after{text-decoration: line-through;}"
        + "</style></head>"
        + "<body style='width:{0}px;margin: 0 auto;'><div>{1}</div>{2}</body></html>";

如果我打电话:

MessageFormat.format(
              WRAPPABLE_HTML, 200, lCat,lDog);

我得到:

Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: Bad argument syntax: text-decoration: lin ...
at com.ibm.icu.text.MessagePattern.parseArg(MessagePattern.java:1106)
at com.ibm.icu.text.MessagePattern.parseMessage(MessagePattern.java:1042)

没有该style部分一切正常。我keywordstyle属性中使用了任何东西吗?

谢谢你的帮助。

斯特凡

4

1 回答 1

1

您应该转义花括号:

private final String WRAPPABLE_HTML = "<html><head>"
        + "<style>div:after'{'text-decoration: line-through;'{'"
                            ^                                ^
        + "</style></head>"
        + "<body style='width:{0}px;margin: 0 auto;'><div>{1}</div>{2}</body></html>";
于 2015-06-23T09:56:34.077 回答