Re: some questions about java.

2019-10-14 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector
Re: some questions about java. A .exe file for a Java program is basically a wrapper that tries to guarantee the jar can run on Windows. It'd be better to leave the jar exposed, so it can run everywhere. URL: https://forum.audiogames.net/post/468340/#p468340 -- Audiogames-reflector

Re: some questions about java.

2019-10-14 Thread AudioGames . net Forum — Developers room : leibylucw via Audiogames-reflector
Re: some questions about java. It's important to understand how Java runs programs. When you run a program with the commandjava example, what's happening is that the Java Virtual Machine (JVM) is running the program. This is a virtual machine (hence the name) that runs in order to execute

Re: some questions about java.

2019-10-11 Thread AudioGames . net Forum — Developers room : CAE_Jones via Audiogames-reflector
Re: some questions about java. You can compile classes into jar files, which can then be wrapped in an exe, but in theory, the jar file should work just as well, assuming the manifest is done correctly.In practice, Windows has always messed up my jar files. I think it's a capitalization

some questions about java.

2019-10-11 Thread AudioGames . net Forum — Developers room : RafaelFernandes via Audiogames-reflector
some questions about java. Hello, the person. I am studying Java language and wanted to ask some questions, hope you can answer.One question I've had since I started studying language is, how do I compile my .class files for .exe because I want to program for windows.Second question: How