public static String format(String message, Object args[])
{
MessageFormat mf;
mf = (MessageFormat)_formats.get(message);
if(mf != null)
break MISSING_BLOCK_LABEL_48;
String msg;
Exception except;
try
{
msg = _messages.getString(message);
}
// Misplaced declaration of an exception variable
catch(Exception except)
{
return message;
}
mf = new MessageFormat(msg);
_formats.put(message, mf);
return mf.format(((Object) (args)));
except;
return "An internal error occured while processing message " + message;
}
if(mf != null)
break MISSING_BLOCK_LABEL_48;
和后面的
mf = new MessageFormat(msg);
_formats.put(message, mf);
return mf.format(((Object) (args)));
except;
return "An internal error occured while processing message " + message;
怎么改
------解决方案--------------------
你事情都没说清楚 没人看得懂你要问什么
------解决方案--------------------
同意楼上
------解决方案--------------------
楼主想干嘛
------解决方案--------------------
public static String format(String message, Object args[])
{
MessageFormat mf = (MessageFormat)_formats.get(message);
if(mf != null)
return null;
String msg;