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
87 views
0
Some on jsp does not run after VerUP to Struts2 2.3.16.1→2.3.28.1

Thank you for your hard work.My name is Nanazip.As you mentioned, we upgraded Struts2 from 2.3.16.1 to the latest version of 2.3.28.1.This prevents jsp from retrieving some of the values it is retriev...

1 years ago

1 answers
32 views
0
About Java

A generates B's object and returns BB adds recordsC has an object of B in the argument, creates the file with the added record, and returns the file nameA and B are done, but I don't know how to pass ...

1 years ago

1 answers
41 views
0
Comparing Arguments and File Paths

I would like to create a method that compares the first 10 characters of the XML file in the folder with the arguments I received and returns a match.The location of the file should be C:\xml.The C:\x...

1 years ago

1 answers
79 views
0
Regarding the handling of registrationId when changing Android devices

I have created an Android app using GCM, and I have obtained the registrationId using the code below to send the push notification, and I have saved it in SharedPreferences.

1 years ago

1 answers
82 views
0
Slow Select PreparedStatement

Utilize JDBC in large amounts of data dataSlow select of PreparedStatement method (?Bind mode)SQL improvement or no binding mode?Retrieves the search results from the search criteria on the screen.You...

1 years ago

2 answers
34 views
0
a program that terminates threads on a time schedule

I can't control it.What's wrong?package com.company;import java.io.*;import java.util.*;import java.util.current.TimeUnit;public class Main { static boolean b=true; static ThreadstdRun = null; public ...

1 years ago

1 answers
90 views
0
I want to extract the date from the Livedoor Blog (RSS 1.0) feed.

This is a program to get RSS on Android.http://www.panzee.biz/archives/3255 The code is located on this site.If things go on like this, I will not be able to retrieve them in the form of a Livedoor bl...

1 years ago

1 answers
79 views
0
About nullpointerexception

Hello, I'm having trouble getting an error.Please let me know.import ddf.minim.*;//importing the minimal library Declaration of Minim;//Minim variableAudioPlayer player;//Variables for storing sound d...


1 answers
136 views
0
Understanding DBUnit Per Record Comparison

Thank you for your continuous support.I'm struggling with how to use DBUnit, so I'd like to ask for your advice.You can compare the actual table with the data specified in Excel in DBUnit, but Is it p...

1 years ago

2 answers
137 views
0
Building a java-web Server Using Sakura VPS

I am currently renting Sakura VPS to publish web applications on CentOS, Apache httpd, Java, and Tomcat.I took it to a state where I could access it at the following URL.http://○○○.com/tomcat/applicat...

1 years ago
« - 17 - »

© 2024 OneMinuteCode. All rights reserved.