If you define a crash as an process abort because of a unhandled situation (i.e. no Java Exception or Error), then this can not be done from within Java. This the whole point of managed code.
Typical crashes in machine code happen by dereferencing pointers to wrong memory areas (null address or missaligned. Another source could be illegal machine instructions (opcodes) or unhandled signals from library or kernel calls.
JVMs (the native code) can have bugs. For example JITed (generated) code, native methods or system calls (graphics driver) can have problems leading to real crashes. In those cases the crash handler of the JVM kicks in and dumps the state. It could also generate a OS core file (Dr. Watson on Windows and core dump on *nix).
On Linux/Unix you can easyly make a JVM crash by sending it a Signal to the running process. Note: you should not use SIGSEGV for this, since Hotspot catches this signal and re-throws it as a NullPointerException in most places. So it is better to send a SIGBUS for example.