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
94 views
0
About Eclipse Automatically Build

Hello I am studying java development at Eclipse.Since it is slow to compile every time I save it, I tried to uncheck Build Automatically in Eclipse.Then, when I debug with tomcat, I start debugging wi...

2 years ago

1 answers
121 views
0
Error creating Android Studio project.

I installed AndroidStudio because I have a new PC, but there was an error that didn't appear last time.When creating a new project, the android:theme=@style/AppTheme in the AndroidManifest.xml file di...

2 years ago

4 answers
48 views
0
About checking the input of the business application

The business application I create has a dedicated area at the top of the screen where messages are displayed.Input errors are displayed here.So I have a question.1. Is it common for web systems to dis...

2 years ago

1 answers
37 views
0
Error Handling Cannot resolve method

I am a beginner in Android development.The following code will cause an image-like error.super(context, R.layout.top_listview, items);I think I should correct the part of , but what should I do?I woul...

2 years ago

3 answers
35 views
0
I got an error that says I need to extend javafx.application.application

I tried to compile the java file with javac at the command prompt, but I got the following error:C:\Users\rqwqk\Desktop\pleiades\workspace\konpairuzikken\src>java wrqrqrqrError: Main method not fou...

2 years ago

3 answers
127 views
0
In Java, to use macros in the C language,

Now I'm trying to convert the source written in C++ to Java.I'm having trouble expanding and rewriting macros.In particular, I am having trouble developing #define, #ifdef/#ifndefCould someone tell me...

2 years ago

1 answers
124 views
0
What jdk is recommended for Android Studio 1.1.0?

It is obvious that you can use the latest jdk in a Windows 7 environment because you can't use jdk8, but which version of jdk7 should I use?

2 years ago

2 answers
121 views
0
How do I make Activity/ArrayAdapter sparse on Android?

Hello,As the title says, How do I make Activity/ArrayAdapter sparse on Android?I tried writing the code where Activity and ArrayAdapter are calling each other's methods.The fact that Activity and Arra...


1 answers
134 views
0
About DownloadListener in WebView

DownloadListener is not called in Android 5.0 or later, what is the cause?Are there any countermeasures?It seems that it is not called only when I click on the Gmail attachment.

2 years ago

1 answers
42 views
0
Error Handling Cannot resolve method

I am a beginner in Android development.The following code will cause an image-like error.super(context, R.layout.top_listview, items);I think I should correct the part of , but what should I do?I woul...

2 years ago
« - 21 - »

© 2024 OneMinuteCode. All rights reserved.