Java actually doesn't care if you declare your variables below the code where they are used, so long as the scope is upward of their use.
For example:

public class Variable {
String...