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
41 views
0
How do I update the next line in StringBuilder?

Use the StringBuilder object as shown below.StringBuilder result = new StringBuilder();result.append(someChar);I want to put a text message that updates the line to the next line, how do I do it?I sai...

2 years ago

1 answers
22 views
0
I want to use Buffered Writer using Jmenu function, but there is an error

https://colorscripter.com/s/R9RgHXjI put it in like that to put the save function in line 71 here There's an error, what's

2 years ago

1 answers
22 views
0
[Java] How to specify a specific folder and read all the text files in the folder

After specifying a particular folder, you want to read and modify all the text files insideIs there a similar example?How do we decide the order?

2 years ago

2 answers
43 views
0
Hello! I have an algorithm question.

It's the following question, but I don't know how to solve it.How should I solve it?Masters, please answer!

2 years ago

2 answers
19 views
0
Java Small Coding Questions [Arrays]

package javaprac;import java.util.*;public class hello { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num; double avg = 0; System.out.println (Enter the numb...

2 years ago

1 answers
85 views
0
This is a question about the state of putting the try-catch inside the while.

public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println (Determine if the digit 10 and the digit 1 are the same.); System.out.println (Enter 0 to stop; Sy...

2 years ago

1 answers
130 views
0
What is the difference between HashMap and Hashtable?

What is the difference between HashMap and Hashtable in Java?What else is more efficient in the non-threaded program?

2 years ago

1 answers
91 views
0
How can I know the location information of the running JAR file?

My source code runs in the JAR file (for example, foo.jar). At this time, I want to know what folder the running foo.jar is in in the source code.So if there is foo.jar in C:\FOOO\, I would like to kn...

2 years ago

1 answers
21 views
0
I have a question about the java combination.

You want to input n (even number) and n coins, divide into two teams, and print the minimum number of coins for two teams.If you enter 6 and 10 20 30 40 30 20, the value should be output as 10.I thoug...

2 years ago

1 answers
128 views
0
How to replace InputStream with BufferedReader

I wrote InputStream to read text line by line from Android Asset Folder.If I use Buffered Reader, I can use readLine(), so I want to change InputStream to Buffered ReaderWhat should I do?InputStream i...

« - 132 - »

© 2024 OneMinuteCode. All rights reserved.