I’ve learned Java for 1 month.
This time, I’d like to create a poker game.
There are two questions about my program.
I hope somebody can help me to fix it.
I don't think you want a String array for cards, what you really need is an enum. Here's a nice tutorial on enum types:
http://docs.oracle.com/javase/tutorial/java/javaOO/enum.html
Also, here's how you generate random numbers in Java:
http://javamex.com/tutorials/random_numbers/