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
79 views
0
Understanding jsp Interator

I'd like to get a value for the session using the iterator in jsp.<s:form action=hogeAction>//hogeAction<s:iterator value=session.data>//session.data can be used as an iterator to view the...

2 years ago

3 answers
34 views
0
Understanding How to Return Methods Using Return Values

http://www.javadrive.jp/start/method/index5.html This site is for your reference.In here, class JSample5_1 { public static void main(String args[]){ intkekka; kekka=bai(9); System.out.println(kekka); ...

2 years ago

1 answers
98 views
0
I want to specify the escape character when performing a LIKE search.

We created a Model class for a table and implemented the following actions to perform an ambiguous search.List<Model class>result=Model class.find.where().or().like(column name, %search string %...

2 years ago

2 answers
34 views
0
I want to inherit my own java file to the java file that I compile in Java's Compiler Tools, but I can't find the symbol.

There is a java file that I want to compile using javax.tools, but it says that I can't find a symbol because I import another self-made java file.(aaa.java wants to extend bbb.java, but generates an ...

2 years ago

1 answers
36 views
0
Do I need to devise ways to access the data in the SD card on Android?

I just started studying Android the other day, and the theory is I don't understand it at all yet, so I would like you to give me guidance based on precautions.Refer to the site, etc., until Press the...

2 years ago

1 answers
30 views
0
The value displayed in the for loop calculation results is different than expected.

Isn't the number displayed for this program 5050?public class Sum{ static int sum = 0; public static void main(String[]args) { for(inti=1,sum=0;i<=100;i++){ sum = sum + i; } System.out.pr...

2 years ago

2 answers
71 views
0
I want to declare the class that inherited the abstract class as an inner class in private and access it from the outside.

■ MyAbstractClass.javapublic abstract class MyAbstractClass { publicMyAbstractClass(){ } public abstract int notifyAbs(inta);}■ MyClassAbstractInnerClass.javapublicclassMyClassAbstractInnerClass{ priv...

2 years ago

1 answers
32 views
0
Understanding the try-with-resources Statement

This is a question about the java try-with-resources statement.If I declare an object outside the parentheses of try() as shown below, will it result in a compilation error?MyResource obj1;try(obj1 = ...

2 years ago

1 answers
64 views
0
How to Pass the Class Path of the JDB Driver into the (HSQLDB) Eclipse

I study servlets using Eclipse in the book Servlet from the Basics.In order to pass the class path of the JDB driver through Eclipse, ①Copy hsqldb.jar from hsqldb>lib to myproject>WEB-INF>lib...

2 years ago

1 answers
33 views
0
How to selectively retrieve information from Java mysql and return it as an array

Sorry againpublic class MemberCtrl{ // Define variables Connection con=null; PreparedStatement ps = null; ResultSetters = null; public MemberCtrl (Connection con) { This.con=con; } public Member[] ex...

2 years ago
« - 37 - »

© 2024 OneMinuteCode. All rights reserved.