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


3 answers
68 views
0
How can Scala explicitly resolve the ambiguity of overloaded methods?

Scala is trying to use the overloaded method provided in Java's library.class X { public<E>voidf(E...values) {System.out.println(1);} public void f(Object value) {System.out.println(2);}}However...

2 years ago

1 answers
49 views
0
Error when playing video in MediaPlayer

The following exceptions occur when playing a video using MediaPlayer:E/MediaPlayer(18065):Unable to create media playerE/DEBUG (18065): ErrorE/DEBUG (18065): java.io.IOException: setDataSourceFD fail...


1 answers
39 views
0
Can Weblogic log objects be filtered from web applications?

<2014/12/19 17:15:53 JST><Notice><LoggingService><BEA-320400><Log File C:\Oracle\user_projects\domains\base_domain\servers\AdminServer\logs\datource Rotation.If the process ...

2 years ago

1 answers
71 views
0
How do I choose the JDK version?

I am thinking of developing a Java web application.Could you please let me know what version of JDK I should choose at that time?The configuration is as follows:framework:SpringBootdatabases:Oracle 19...

2 years ago

1 answers
102 views
0
Canonot resolve symbol fasterxml

If you synchronize with the code shown below, the event log will display the following errors:Is there something missing?error message Gradle sync failed: Could not find method compile() for arguments...


2 answers
36 views
0
Characters get garbled when JAVA reads a text file other than utf8

In JAVA, I made the process of loading the text file as follows.The text file to be read is like EUC, Shift-JIS, GB2312, etc.If it is not UTF-8, the imported String is garbled.Converting to Unicode (U...

2 years ago

1 answers
43 views
0
I want to upload to FTP server using Apache commons library, but I can't.

I would like to create a program on Android that uploads text files to the FTP server using Apache commonsnet, but the Reply Code 500 was returned and I cannot do so.Here's the program (it's actually ...

2 years ago

1 answers
66 views
0
How to Specify the Java Version When Deploying War in Herokucli

I deploy war through the CLI without using git in heroku.In that case, I would like to specify the java version, but is there such a way?I would like to do this without using system.properties in git.

2 years ago

2 answers
41 views
0
I want to change the color of the button after 1 second of the button taken out of the list.

We take them one by one from the list containing the numbers in the code below and repeat them.However, this code will cause the buttons to change color at the same time.When you run debugging and ste...

2 years ago

1 answers
34 views
0
What is the difference between using Jpanel and JFrame (user interface)?

In the following program, we have assembled the Rate3 class program as the inheritance class for JPanel, but we receive a compilation error.I think the program is probably related to the installation ...

2 years ago
« - 26 - »

© 2024 OneMinuteCode. All rights reserved.