java tag

Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need to recompile. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture. The syntax of Java is similar to C and C++, but has fewer low-level facilities than either of them. The Java runtime provides dynamic capabilities (such as reflection and runtime code modification) that are typically not available in traditional compiled languages. As of 2019, Java was one of the most popular programming languages in use according to GitHub, particularly for client–server web applications, with a reported 9 million developers.

Java was originally developed by James Gosling at Sun Microsystems and released in May 1995 as a core component of Sun Microsystems' Java platform. The original and reference implementation Java compilers, virtual machines, and class libraries were originally released by Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java Community Process, Sun had relicensed most of its Java technologies under the GPL-2.0-only license. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation is the OpenJDK JVM which is free open-source software and used by most developers and is the default JVM for almost all Linux distributions.

As of March 2022, Java 18 is the latest version, while Java 17, 11 and 8 are the current long-term support (LTS) versions. Oracle released the last zero-cost public update for the legacy version Java 8 LTS in January 2019 for commercial use, although it will otherwise still support Java 8 with public updates for personal use indefinitely. Other vendors have begun to offer zero-cost builds of OpenJDK 18 and 8, 11 and 17 that are still receiving security and other upgrades.

Oracle (and others) highly recommend uninstalling outdated and unsupported versions of Java, due to unresolved security issues in older versions. Oracle advises its users to immediately transition to a supported version, such as one of the LTS versions (8, 11, 17).

Reference: WIKIPEDIA

1495 questions


1 answers
123 views
0
Classnotfoundexception at Java Applet startup

I tried to launch Java Applet from XHTML, but classnotfoundexception occurs if hoge.class does not exist.Local Eclipse environment boots, but error occurs when deployed to Glassfish.Below is the index...

2 years ago

1 answers
40 views
0
Android app, how to use cursor in multiple methods.

Hi, everyone.I am currently creating an Android image slide show application.To give you an overview, we obtain images saved on the actual machine with cursor and switch between images by playing, adv...

2 years ago

1 answers
35 views
0
GetText for another class file in java

Create a text field in sample1.java with JTextField text=newJTextField(); and press the button to move another class (textget) program in sample2.java. I wrote (wanted) a program to get a string in th...

2 years ago

1 answers
78 views
0
I'm a beginner in language, so please let me know when Super is called automatically.

I have a question about the program below, why isn't the superclass constructor called automatically when the sixth line of the Child class constructor is called?What I've tried so far:Read the commen...

2 years ago

1 answers
149 views
0
Gradle's -D option value cannot be retrieved by Java program

System.getProperty cannot retrieve valuesJava 1.8Gradle 2.14 gradle test-Denv=testSample.java import static org.junit.Assert.assertEquals;import org.junit.Test;public class Sample { @ Test public void...

2 years ago

1 answers
126 views
0
Questions about apps using voice recognition APIs

I'm a beginner in programming.I'm currently trying to create an app that I've done with Google Cloud Speech API.Use this API to display the resulting words you have pronounced.If there are multiple ca...

2 years ago

1 answers
159 views
0
JSP Runtime Error Package common does not exist

On Windows 10, Eclipse 4.4 develops programs for JSP and JAVA.I was asked to modify the project of Long time ago.From Eclipse, CVS took an existing project and built it without errors.Locally, from yo...

2 years ago

2 answers
42 views
0
Error without class, interface, or enum

I am making an app in Android studio, but I got an error saying that there are 6 classes, interface, or enum missing.MainActivity.java has the following information:import android.support.v7.app.AppCo...

2 years ago

1 answers
126 views
0
When using AJPProxy and setting the context path to /, relative paths such as css/js are not read well

The environment is java8Tomcat8SpringMVCThat's it.When creating a web application, the VIEW style sheet and JavaScript's relative path are offset.Set the context path to / and http://Domain/I would ...

2 years ago

1 answers
114 views
0
Please tell me how to display multiple ads on the same page in admob.

I have a question about the Android app.How do I display multiple ads on the same page in admob?I was able to see one ad.Thank you for your cooperationI can't even see it on the second page, butWhat s...

2 years ago
« - 25 - »

© 2024 OneMinuteCode. All rights reserved.