Which Browser is Running Me?

Which Browser is Running Me?

While Java’s ability to run on numerous computer platforms makes a developer’s task easier, it is sometimes necessary to customize code to match the abilities of the environment. A good example is the need to tailor the generation of Dynamic HTML syntax to the brand of browser which will be used to display it. Surprisingly, there seems to be no direct technique for determining the name of the program that invoked the Java Virtual Machine. The following method can be inserted in any class and will return a value suitable for use in a switch:

 // Gets run-time platform// Returns 0 for an Application//         1 for a Netscape  browser//         2 for a Microsoft browser//        -1 for an unknown platform    public int getPlatform() {        SecurityManager sm = System.getSecurityManager();        if (sm == null) return 0;        String st = sm.toString().toLowerCase();        if (st.startsWith("netscape")) return 1;        if (st.startsWith("com.ms." )) return 2;        return -1;    }
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several