It depends on the scope that you want each field to have, and the memory footprint that you want your method to have. When you declare a field at Class level, the memory area is initialized for your fields at runtime. When you declare them at method level, the memory that is needed and initialized for those fields at execution time, and then when the method is finished the memory is flagged for garbage collection. At method level there is a possibility that the memory foot print of your class might shrink and grow as needed. If the method is never called, then do you really need those fields to be always available?
I have found that Class level fields are good for anything that you want to be static final, or unchanged and unchangeable. Not necessarily a global variable so to speak, but pretty darn close to it. Unless of course you are creating a class that is a data transfer object, then everything that you want visible, or must be initialized would be at the Class level. Method level fields are good for something you need temporarily to perform a calculation.
MyObjectdeclarationstaticso it's compile-able code. – Todd Dec 10 '10 at 4:53