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


2 answers
55 views
0
I want to view the same web page on my Windows PC/Android tablet.

Instead of providing a web page for each Windows PC/Android, I'd like to see one web page from both sides.The PC only looks at the web page, but I also want the tablet to scan the barcode using HTML5....

2 years ago

2 answers
136 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
118 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
91 views
0
FileNotFoundException:downloading attachments

I would like to download the email attachment via WebView, but I get a FileNotFoundException error.By the way, the test is Outlook.code:ImageGetTask.javaInputStream is; String url=https://example.com;...

2 years ago

1 answers
65 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

4 answers
91 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

3 answers
60 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
117 views
0
MediaRecorder.stop() Returns NullPointerException

Currently, we start recording by pressing the Start button on the dialog, and when we press the Stop button, another save confirmation dialog is displayed, and when we press the Save button, the recor...


1 answers
90 views
0
MediaRecorder.stop() Returns NullPointerException

Currently, we start recording by pressing the Start button on the dialog, and when we press the Stop button, another save confirmation dialog is displayed, and when we press the Save button, the recor...


2 answers
58 views
0
error: What does No resource identifier found for attribute 'latout_height' in package 'android' mean?

error: No resource identifier found for attribute 'latout_height' in package'android'This error occurred while using java.Could you tell me how to solve this problem?

2 years ago
« - 22 - »

© 2024 OneMinuteCode. All rights reserved.