I found something that worked, I guess I will follow up on my own post:
NumberFormat format = NumberFormat.getInstance();
format.setGroupingUsed(false);
System.out.println(format.format(trans.getEmployeeNum()));
System.out.println(format.format(trans.getEmployeeNum()));
the setGroupingUsed was the key, thanks to all who replied!