如何在GWT中格式化我的字符串?
我做了一个方法
Formatter format = new Formatter(); int matches = 0; Formatter formattedString = format.format("%d numbers(s, args) in correct position", matches); return formattedString.toString();
但它抱怨说
Validating newly compiled units [ERROR] Errors in 'file:/C:/Documents%20and%20Settings/kkshetri/workspace/MasterMind/MasterMind/src/com/kunjan/MasterMind/client/MasterMind.java' [ERROR] Line 84: No source code is available for type java.util.Formatter; did you forget to inherit a required module?
不包括格式化程序吗?
更新:在进一步查看此答案之前,请先查看(并投票)约瑟夫·卢斯特的帖子。
看起来这篇文章没有包含格式化器。但是,他们提出了一些替代方案。