Explain notify() method of object class ?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any way to find whether software installed in the system is registered by just providing the .exe file? I have tried the following code but its just displaying the directory structure in the registry. Here the code : package com.msi.intaller; import java.util.Iterator; import ca.beq.util.win32.registry.RegistryKey; import ca.beq.util.win32.registry.RootKey; public class RegistryFinder { public static void main(String... args) throws Exception { RegistryKey.initialize(RegistryFinder.class.getResource("jRe gistryKey.dll").getFile()); RegistryKey key = new RegistryKey(RootKey.HKLM, "Software\\ODBC"); for (Iterator<RegistryKey> subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }
What is Hash Code in Java?
can any one tell me when do u go for inheritance and polymorphism
How do you convert an int to a double in java?
give me the answer of this code class A extnds String This code we can write r not in Java? Explain?
hi am an engineering student and my next plan is for ms in either in us or australia i got my passport but i dont know anything bout visa can u give brief idea 1)How to get prepared for visa and 2)How to apply for top universities and 3)How to pay the fee and so on These all are basic questions plz give me a clear idea
What is the difference between form & report?
Explain enumeration in java?
Explain what are final variable in java?
What are the ways of polymorphism other than Overridding & Overloading
Can we use string in switch case in java?
What is the function of java?