Latest Answer : Graphics 2d g;JFrame f;g.dispose(); setPreferredSize(new Dimension(128+r.nextInt(128),128+r.nextInt(128))); f.pack(); ...
Latest Answer : java archive file. a package of java class files into one compressed portable file. ...
Latest Answer : JAR:java archieve file.all class files will be placed in this jar files. ...
Latest Answer : To convert java program to .exe file, we have to first complie that java program,which is generated a bytecode in the form of hexadecimal with the extension .class file. Then execute the program. For example suppose the program name is xyz . javaD:>javac ...
LET US TAKE A CASE:IF I COMPILED A .JAVA FILE AND I GOT .CLASS FILE,SUPPOSE IF I TAKE .CLASS FILE IN A FLOPPY AND TRY TO RUN ON THE OTHER MACHINE,WILL THE SYSTEM REQUIRED JDK OR JRE.
OTHER SYSTEM REQUIRED ONLY JDK NOT JRE,JDK IS A PART OF THE JRE(java run time enviornment)
Please anybody tell me that how to make GUI using Jgraph and also just need to use target library SWING, for Jbutton, Jpannel, Jtextfield it also can change the propeties, Like height , color , width, it also can save and open as well. Please help me with this. it not need to be the big GUI desginer it need to be fairly simeple. Thankx, its urgent.
A) TrueB) False
Latest Answer : true ...
In order for a source code file, containing the public class Test, to successfully compile, which of the following must be true?
A) It must have a package statementB) It must be named Test.javaC) It must import java.langD) It must declare a public class named Test