建议将以下代码作一些修改:
//modify this line
//            if (System.getProperty("java.vendor").equals("Microsoft Corp."))
// to this:
String vendStr = System.getProperty("java.vendor").toLowerCase();
 if (vendStr.indexOf("microsoft") != -1)