日期:2014-05-20  浏览次数:20685 次

反编译 的程序 大家帮我看,怎么修改 100分
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;