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
69 views
0
The Android app just clicks on the button and it falls off.

I get this error.What's wrong?java.lang.NullPointerException: Attempt to invoice virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on an all object refe...

2 years ago

1 answers
87 views
0
About Hierarchy at JAXB.marshal

Hello We are currently generating xml with the following source code:public class Main { public static void main(String[]args) { Kusakusa = new Kusa(); kusa.setKusa(Gusa); Kusa2kusa2 = new Kusa2();...

2 years ago

1 answers
79 views
0
Error initializing servlet class

I'm a beginner in programming.While I was learning Servlet on my own, I suddenly got an error in the Servlet file, so I would like to post it.Environment:Windows 10Use vscodeTomcat 10.0jdk-17.0.1There...

2 years ago

1 answers
80 views
0
I want to use Firebase (FirebaseStorage, Realtimedatabase) to display images on Android.

teratail posts the same question.On Android, we are developing an app that uses Firebase (FirebaseStorage, Realtimedatabase) to display images, text, etc.Text data is kept in the Realtimedatabase and ...


2 answers
30 views
0
How do I resolve execution errors in the java program?

Error: Main method not found in class Ex22.Define the main method as follows: public static void main (String[]args)Alternatively, the JavaFX application class must extend javafx.application.Applicati...

2 years ago

1 answers
28 views
0
If the API is set to 28, it becomes "Cannot resolve symbol 'NotificationCompat' and cannot be built.

After changing the Target version to 28, ERROR: Symbol not found Symbol: Class NotificationCompat Location: Package android.support.v4.appI can no longer build next door.android{US>lintOptions{ checkR...

2 years ago

1 answers
63 views
0
Unable to test GET POST display interaction

I'm a beginner in Java.I set get post to the controller, but the console does not display the results.How do I display the ID and PASSWORD entered in the form on the console?@RequestMapping(value=/pro...

2 years ago

3 answers
33 views
0
How to Run Programs for Two Public Classes

I have a question in the program below.Compiling the following programs with javac Main1.java results in a compilation error:Error Contents Main1.java:20: Error: Class Hero is public and must be decla...

2 years ago

1 answers
65 views
0
java google data transfer does not transfer data

I'm sorry.please tell me。Attempting to change the owner of the google drive using Google's data transfer api in javaThe following code has been combined.After running it, I received an email from Goog...

2 years ago

3 answers
29 views
0
I would like to know how to write the substitution and display of values in a two-dimensional array in a separate for statement.

I'm currently studying two-dimensional arrays, and one of the problems was, Create an array of double and set the value of element [x][y] to x*y (without initializer).So I was able to display them in ...

2 years ago
« - 52 - »

© 2024 OneMinuteCode. All rights reserved.