Don't we all start that way? (well, not me of course, but...) Mark Twain even had a quote about it (the general idea, not java) which went something like "When I was 16 my old man was so ignorant I could barely stand to have him around, but when I got to be 21 I was amazed at what he had learned in 5 years".
Best thing for taking conceit down a few pegs is reality - If you can show him a fix for something he thinks is great, he may actually get the idea that he doesn't know everything. Best if you can find something obvious. Unfortunately there are some things that don't really make sense without some experience - rewriting code always looks like a good solution if you're not used to reading others code (Here's a good Joel article), and don't have a sense of the hassle that can cause in a business sense. Patterns are another thing that doesn't really make much sense until you've done it the wrong way.
-Ask him to architect the rewrite and then tear it apart?
-show him some examples of his code on the dailyWTF?
Ultimately he's either a good programmer who's just inexperienced (in which case he'll figure it out eventually) or he's terrible and he'll spend the next 10 years thinking he's hot s**t, in which case there's probably nothing you can do). If he really thinks java is the end-all language, he's (to put it charitably) got a long way to go (and I say this as a mostly-java programmer). Write a major module in lisp and ask him to "just do a little fix" on it.
On a more positive note, there are some projects that I've worked on that seemed easy at the time but eventually taught me the inadequacy of the naive and obvious approach, and that have widely used and tested methodologies. Two that come to mind are parsers and web frameworks. If you think you're great but aren't really and are asked to write a parser, you'll probably start with a big mess of string matching. A really elegant parser architecture can be humbling, especially if you've just spent a week trying to figure out how to separate out comments using raw string parsing.