Answer Posted / srinivasa
Both are IDE's for developing applications.
Myeclipse is built on eclipse. Means some additional
features are added on top of eclipse for the ne tech
support.Plugins are added for supporting new features which
are not available in eclipse.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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
can I implement my own start() method? : Java thread
Explain garbage collection in java?
What is thread pool in java with example?
What is bean? Where it can be used?
Why java is call by value?
Write the algorithm to check the number non-leaf nodes in a tree.
What is the difference between a vector & an array list?
What is a conditional statement explain with example?
What is the final method?
How do you write a scanner class in java?
Are arrays dynamic in java?
What is byte data type?
What is ‘is-a ‘ relationship in java?
How can a gui component handle its own events?