Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 2.68 KB

java.md

File metadata and controls

57 lines (36 loc) · 2.68 KB

JAVA Programming Language

https://en.wikipedia.org/wiki/Java_(programming_language)

Learn JAVA, JSP and more http://javalessons.com/

Running from prompt http://javarevisited.blogspot.cz/2011/11/run-java-program-from-command-prompt.html

JAVA language basics https://docs.oracle.com/javase/tutorial/java/nutsandbolts/index.html
JAVA cheatsheet https://introcs.cs.princeton.edu/java/11cheatsheet/
JAVA course https://www.udemy.com/java-tutorial/
JAVA na web serveru http://www.zdrojak.cz/clanky/java-na-webovem-serveru-prvni-web/

GNU JAVA Training Wheels http://davin.50webs.com/J.T.W/index.html

JAVA platform 6 SE API specification

JRE/JDK commands

java -version
java -XshowSettings  # show currently set settings

Run upscaled java https://superuser.com/questions/988379/how-do-i-run-java-apps-upscaled-on-a-high-dpi-display

Maps
http://www.use-it.be/europe/docs/OSMmanual/ http://mappanel.sourceforge.net/ http://www.jhlabs.com/maps/index.html http://docs.oracle.com/cd/E21764_01/web.1111/e10145/vis_beanapi.htm http://www.showeq.net/forums/showthread.php?3142-Java-SOE-Map-Viewer http://trac.osgeo.org/fusion/wiki/GetIt http://trac.osgeo.org/fusion/wiki/FusionInstallationConfiguration

REST application creator http://bootique.io/

Linux JAVA_HOME settings https://stackoverflow.com/questions/663658/what-is-the-correct-target-for-the-java-home-environment-variable-for-a-linux-op

public class Helloworld{
	public static void main(String args[]){
		System.out.println("I am running my first Java program');
	}
}