|
|
|
|
|
by TheBozzCL
485 days ago
|
|
It'd be sufficient if a system involved somewhere in the process converted null values to strings. There's innumerable ways, but here's a simple one in Java: final String myNullString = "" + null;
System.out.println(myNullString);
|
|