Answer Posted / bijoy baby
jspinit();
-jspservice();
jspdestroy
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What do you understand by Header linked List?
How to restrict a member of a class from inheriting by its sub classes?
Explain about map interface in java?
What does %d do in java?
What is the difference between synchronized and synchronized block?
What is the symbol for average?
How to create packages in java?
How to compare strings in java?
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
Explain the hierarchy of java exception classes?
Can we use static class instead of singleton?
How many return statement are allowed in a function?
What do you mean by inner class in java? Explain
What is a substring of a string?
What is the collection interface?