where do you place after you did code in java

Answers were Sorted based on User's Feedback



where do you place after you did code in java..

Answer / arun

if I am wrong, you are asking, where we put our class and
java file, after coding.

It is totally depends on you. you can put in any folder.
both class file and java file can put together or separate
folder. it doesn't matter you put your source code,
because compiler only checks your class file. so if you
put your class file in some folder, you need to define java
classpath before running your code. you
but stratigies, which generally prefered by most of
developer. source code should be put in soruce folder, and
class file should be put in classes folder.
if your packege is in C:\project
then
C:\project\src\ (put java soruce file here)
C:\project\classes\ (put class file here)
and give command on cmd prompt..
C:\java -classpath C:\project\classes

so when you run your class file, it will check you classes
fodler..

Is This Answer Correct ?    3 Yes 1 No

where do you place after you did code in java..

Answer / javac

See, you can put your class files any where on hard
disk.but at the same time you have to set the path in
environmental variable for the bin folder where javac.exe
file is available.after this you can compile and run
the .class file at the location where you have stored.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are decalarations?

0 Answers  


What are the difference between string, string builder, and string buffer in java?

0 Answers  


Can we execute a program without main?

0 Answers  


whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net

0 Answers  


What does yield method of the thread class do?

0 Answers  






What is a numeric literal?

0 Answers  


Tell me are there implementations for sorting and searching in the java libarary?

0 Answers  


Is null keyword in java?

0 Answers  


What is the private method modifier?

0 Answers  


Is multiple inheritance supported by java?

0 Answers  


How can you set an applet’s height and width as a percentage?

0 Answers  


What do you mean by constructor?

0 Answers  


Categories