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
151 views
0
Please tell me your point of view when writing unit tests on unit.

We are planning to conduct a unit test using unit 5 in the project.I've never written a test code before, so I don't know from what point of view to write it.For example, I wrote it to test get(), put...

2 years ago

1 answers
28 views
0
Minecraft Plugin

I want you to read commands from another class, but it doesn't work.Error Code: [16:10:46 INFO]: [test_plugin] Enabling test_plugin v0.0.116:10:46 ERROR—Error occurred while enabling test_plugin v0.0....

2 years ago

3 answers
79 views
0
To Split a String with Double Quotation into Spaces

We are looking for a way to split each keyword if you enter one or more keywords for a full-text search, such as Google Search.I'd like to divide the following strings separated by half-width and full...

2 years ago

1 answers
84 views
0
Understanding Class Files on the Java Server (Tomcat) in Heroku

Create a Java Web Application using Embedded Tomcat to develop a web app using Java.First of all, I would like to import my own class into index.jsp and use it.For example, I created a class called Te...

2 years ago

1 answers
27 views
0
Please tell me how to decide the Java dice game draw.

We use Eclipse to create a game in which the person with the highest total wins by rolling the dice.The rules are as follows:However, I don't know how to write down the draw decision.Could you give me...

2 years ago

1 answers
120 views
0
About retrieving strings in textfield in java

JTextField text=newJTextField(Initial Value; I got the string in the text field with getText and found that I got the Initial Value.However, if you remove the 値initial value 」 string in the text field...

2 years ago

1 answers
59 views
0
The import statement is not recognized by Android Studio.

We are currently developing an Android app.Even though it is imported on the library class, the import statement is not reflected and it is in the red as follows:As a result, the gradle syncs, but whe...


1 answers
122 views
0
Creating a spring security login page results in a default page

I am currently creating a login page with springboot, gradle, and spring security.I would like to display html loginForm.html on thymeleaf.Whatever you enter in the URL on the local host is skipped to...


2 answers
156 views
0
Tips for finding the cause of the boot drop

There is an app that has been created on Android Studio, converted into Apk, and uploaded to the Google Play Store for about a month.If you look at the recent review section, you can see a lot of user...

2 years ago

1 answers
23 views
0
I want to pass the ArrayList variable, but I get an error.

For information on how to pass ArrayList variables in JAVA, see I'm looking it up on the Internet, but In the line receive(list); below, suppose the elicpse is in red and the argument type is differen...

2 years ago
« - 56 - »

© 2024 OneMinuteCode. All rights reserved.