FIX: System.getproperty("user.name") Returns Null (177175)



The information in this article applies to:

  • Microsoft virtual machine
  • Microsoft SDK for Java 1.5
  • Microsoft SDK for Java 1.51
  • Microsoft SDK for Java 2.0

This article was previously published under Q177175

SYMPTOMS

The Microsoft virtual machine (Microsoft VM) build 1518 and earlier returns null while attempting to use System.getProperty("user.name") to determine the users login name.

RESOLUTION

This is a bug and has been fixed in the Microsoft virtual machine that ships with the SDK 2.01 for Java.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been corrected in the Microsoft VM that is provided in the SDK 2.01 for Java.

MORE INFORMATION

To reproduce the problem:

Create a Java Project and include the following class to it:
class TestProperty
{
   public static void main(String args[])
   {
     System.out.println(System.getProperty("user.name"));
   }

}
With earlier Microsoft VMs, this will return null. However with the Microsoft VM included with the SDK 2.01 for Java, it will correctly return the user's login name.

REFERENCES

For the latest Knowledge Base articles and other support information on Visual J++ and the SDK for Java, see the following pages on the Microsoft Technical Support site:

Modification Type:MinorLast Reviewed:8/25/2005
Keywords:kbBug kbcode kberrmsg kbfix kbSDKJava201fix KB177175 kbAudDeveloper