The most obvious impact is the number of file handles open which is sometimes an issue on linux. Though if running out of file handles is an issue, the number of jars is unlikely to the problem point.
As I understand the index file keeps things pretty close to constant time to find anything in the jar.
Unpacking them all into directories (or a single directory) might give you a little boost. It would be short lived, though, as once the class is in the perm gen space that's all that is needed. It would have a long lived benefit on any non-class files you may read from the classpath via getResource() calls.