I think Java is fine as it is, adding unsigned would complicate it without much gain. Even with the simplified integer model, most Java programmers don't know how the basic numeric types behave - just read the book Java Puzzlers to see what misconceptions you might hold.
As for practical advice:
If your values are somewhat arbitrary size and don't fit into int
, use long
.
If they don't fit into long
use BigInteger
.
Use the smaller types only for arrays when you need to save space.
If you need exactly 64/32/16/8 bits, use long
/int
/short
/byte
and stop worrying about the sign bit, except for division, comparison, right shift, and casting.
See also this answer about "porting a random number generator from C to Java".