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
72 views
0
How to get the amount of movement of Bluetooth mouse connected to Android device through the app

If you connect the mouse to the Android device, the cursor will appear on the screen and you will be able to operate it.I am using a Bluetooth mouse paired with an Android device, and I would like to ...

2 years ago

1 answers
90 views
0
Error on line 1 of pom.xml cvc-elt.1.a: Cannot find the decimation of element 'project'

I can't get rid of the pom.xml error in the Java project.Include the first line of pom.xml.<project xmlns=http://maven.apache.org/POM/4.0.0xmlns:xsi=http://www.w3.org/2001/XMLSchema-instancexsi:sch...

2 years ago

1 answers
34 views
0
Common Methods for Accessing In-App Update Files in Java

I'm sorry that the title is hard to understand.In Java, let's say you create a CUI application that runs on its own without specifically using a framework (?) such as JavaWebStart or Tomcat (even if i...

2 years ago

2 answers
32 views
0
About Creating Web APIs in java

I want to create a WebAPI in javaI am a beginner in java.I am studying creating web applications using java.After reading the book Introduction to Servlet & JSP, I was able to create a simple web app ...

2 years ago

1 answers
29 views
0
How to convert Shift-JIS to UTF-8 in Java

This is a rudimentary question.My current original file is SJIS.So, I want to display Japanese kanji on the Linux screen.My current Java source code is:private static String convertUTF8ToShiftJ(String...

2 years ago

1 answers
108 views
0
Error in JSF after Pressing Action Button

In JSF, we implemented the following action buttons in xhtml:<?xml version=1.0 encoding=UTF-8?><!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xht...

2 years ago

1 answers
64 views
0
a regular expression that is a half-width number up to five digits and does not allow "0 only"

Can such regular expressions be written?Thank you for your cooperation.0 → out 00→out000→out0000→out00000→out1 → ok123→ok0123→ok00123→ok12345 → ok

2 years ago

1 answers
132 views
0
I want to get the filename and pass it to the servlet class.

On the screen, click a line to the table, press the File Name Acquisition button with the yellow line, and pass the file name in the yellow line to the servlet class in Java.You can click a row to the...

2 years ago

1 answers
40 views
0
Multi-Monitor Screen Switching

Connect a graphics board with four monitors to your Windows 10 PC and I would like to create an application that switches the output status of the screen.You can play videos and more by treating four ...

2 years ago

1 answers
68 views
0
I would like to automatically update the Twitter app development timeline.

I am creating my own Android app on Twitter.I'm a beginner.I use twitte4j.I managed to create a time line to be displayed.Therefore, instead of manually updating it, I would like to add a setting that...

2 years ago
« - 33 - »

© 2024 OneMinuteCode. All rights reserved.