0

I have just created a file in java using an online compiler at http://wwww.compileonline.com but I can't see the file created. Anyone who has used this compiler before please help..

Lyuben Todorov
  • 13,987
  • 5
  • 50
  • 69
Paul Odero
  • 39
  • 8

1 Answers1

0

I don't think that compileonline is actually intended to be used as a tool for creating bytecode files. It is primarily a learning tool.

If you want to do serious development and/or produce bytecode files, you are better off downloading and installing a Java JDK distribution and/or a Java IDE.


FWIW, if the site did offer a bytecode creation service, you'd need to think twice about using it. How would you know their compiler doesn't add sneaky stuff to the generated code? How would you know it doesn't save a copy of your code for some reason?

(I'm not implying that they would do these things, but you'd be wise to consider the risk ...)

Stephen C
  • 698,415
  • 94
  • 811
  • 1,216
  • Not in a position to get an IDE or a JDK right and i need to write a class to manipulate files dynamically, any other solution? – Paul Odero May 07 '13 at 09:45
  • No other solution, AFAIK ... unless you want to create bytecode files with a binary editor :-) – Stephen C May 07 '13 at 10:47
  • OK - maybe there are solutions if you are prepared to spend some time and money. For instance you could go to a cloud service provider, pay for a virtual with Java tools installed, and do your compilations there. – Stephen C May 07 '13 at 10:54