ankittt agarwala

Ranch Hand
+ Follow
since Jan 19, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by ankittt agarwala

such a long and good answer really ejb explained
Exception in thread "main" java.lang.NoClassDefFoundError: javax/mail/Authentica
tor
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
at java.lang.Class.getMethod0(Unknown Source)
at java.lang.Class.getMethod(Unknown Source)
at sun.launcher.LauncherHelper.getMainMethod(Unknown Source)
at sun.launcher.LauncherHelper.checkAndLoadMain(Unknown Source)
Caused by: java.lang.ClassNotFoundException: javax.mail.Authenticator
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 6 more
12 years ago
ya thanks but google answers are not that perfect than whan one can expect here.
i was wondering that what exactly is ejb and what is java ejb?enterprise java beans ???
i have simple c++ compiler , which when executed gives error - DOES NOT SUPPORT FULL SCREEN MODE
13 years ago
i was just telling him to execute java programs without eclipse
13 years ago
hey they have written code in broken parts just complete them and also compile and run them without eclipse or xcode that book requires all code to be executed without softwares
13 years ago
c++ is not running fullscreen in windows seven so any software for that??
13 years ago
ok ok you want to see its use go here.
13 years ago
Overriding - same method names with same arguments and same return types associated in a class and its subclass.
Example:

class CSuper

{

null print ( string _name)
{

print "Hello" + _name;

}

};

class CDerived

{

null print ( string _name)
{

print "Hello" + _name + "from Derived";

}

};



Overloading - same method name with different arguments, may or may not be same return type written in the same class itself.

Example:

class CClass
{

string print( int i);

string print(int i, char c);

};


there is a difference between these two and also when you write programs you will get to know their use too.
Read more: http://wiki.answers.com/Q/Difference_between_overriding_and_overloading#ixzz1UeNV7W7y
13 years ago
ok so java on mobile is something different then what is java on computers. java microedition.
so i want a basic program which just shows this is java on mobile screen.
it would give idea how java is written for mobiles.
13 years ago
this is a very serious question
java enabled appliances can run java so i wanted to know that how can i run java .class files on mobile.mobile is java enabled.for example a simple program which displays this is java , has been compiled successfully to its class file now how to run it on mobile.simple conversion to jar file doesn't seem to work.
13 years ago
ya try it out seems possible and then tell the error if you encounter any
13 years ago
this may help you out for your problem
download the rar file and extract it to a suitable directory and set the environment variables..
13 years ago