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
48 views
0
I want to know how to declare a Java array

Code that declares a ragged array (gradeHeights) and then enters a value into the array (setData).int[][] gradeHeights = new int[5][]; is fine, but specifying the length of the two-dimensional array b...

2 years ago

1 answers
144 views
0
How can I output data for a Java object that is not the same value as "SomeType@2f92e0f4"?

You have defined the following classes:public class Person { private String name; // // constructor and getter/setter omitted}Attempted to print an object for this Person class.System.out.println(myPe...

2 years ago

1 answers
132 views
0
What exception is java.lang.ArrayIndexOutOfBoundsException, and how do I prevent that exception from occurring?

What is the meaning of ArrayIndexOutOfBoundsException? How can I handle this exception?The following source code is an example of where this exception occurs.String[] name = {tom, dick, harry};for(int...


1 answers
137 views
0
What is the best way to determine the size of an object in Java?

For example, you have an application that allows you to read CSV files that are stored, separated by rows of data. You want to summarize the number of rows based on the data type and provide it to the...

2 years ago

1 answers
48 views
0
Unfortunately MyApp has stopped. How do I resolve the error message?

I'm developing an application, and every time I run it, I get this message.Unfortunately MyApp has stopped.How do I solve this?**

2 years ago

1 answers
113 views
0
How to write an sd card to a specific folder on Android.

Below is the code for downloading files from my server.I write the download file to the root directory of the sd card, but it works well!package com.downloader;import java.io.File;import java.io.FileO...


1 answers
42 views
0
What is a String Pool in Java?

This question has already been answered in the link below:I'm confused by String Pool in Java. I got to know String Pool while I was reading the String chapter of Java. Please let me understand in eas...

2 years ago

1 answers
144 views
0
Which is Java, pass-by-reference or pass-by-value?

I've always thought that Java is a pass-by-reference. But I saw a blog claiming it wasn't. (Here's a link: http://javadude.com/articles/passbyvalue.htm)I don't know the difference. Please explain.


1 answers
82 views
0
How to send POST data from Android

I've dealt with a lot of script languages like PHP and JavaScript.I have little experience with Java and Android. I want to send POST data through PHP script and show it on the screen, what should I d...


1 answers
117 views
0
How do I read text data stored in a file as a string?

I've been using the source code below. And this seems to be at least the most commonly used method on the site I searched for.Is there another better way to read data from a file as a string from Java...

2 years ago
« - 78 - »

© 2024 OneMinuteCode. All rights reserved.