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
45 views
0
How do I get the extension of a file in Java?

If I have a file like /path/to/file/foo.txt, I want to get only .txt, how can I do it?Is there a related method?

2 years ago

3 answers
67 views
0
Looking at the Java date class, it's almost defected, is it better not to use it at all?

Looking at the generators, we find the current time Date date = new Date();Other than that, everything was decided. Then you can just tell them to use Calendar. Why did they leave that?

2 years ago

1 answers
99 views
0
This is a question about how to hand over the position value when clicked in recyclerview.

When you click one view in the Recycler view, you take one value of the array containing the data in the clicked view and (AsyncTask) asynchronous communication. At this time, the value to post to jso...


1 answers
111 views
0
Real-time App Server Implementation

Hello, everyone We are implementing app programming that shows the waiting time and number of people at a restaurant in real time. As far as I know, database, server, app exists, so when data comes in...


1 answers
107 views
0
How do you define global variables in Java?

How do you define global variables in Java?

2 years ago

1 answers
31 views
0
Do not get gps speed values (Location Manager settings are complete). If you import and move the current location, you can accumulate the gps distance. But it doesn't get the speed.)

public float getSpeed(){ return speed; }public void setSpeed(float speed){ this.speed = speed;} public void onLocationChanged(Location location) { Log.d(TAG,location.hasSpeed()+); if(location.hasSpee...

2 years ago

1 answers
22 views
0
What is the difference between getPath(), getAbstolutePath(), and getCanonicalPath() in Java?

What is the difference between getPath(), getAbstolutePath(), and getCanonicalPath() in Java?When do you use this?

2 years ago

1 answers
96 views
0
Is it possible to change string to integer on Android?

I'd like to change the string to an integer.There's edittext, and the user enters a number here.I received it as String hello, but I want to change it to Integer instead of String.EditText et = (EditT...


1 answers
22 views
0
Method invoking question of another class.

I tried to use the GPS check method below by calling MainActivity, but I couldn't use itIt's bouncing off. I need your advice.===GPS Verification Class===public class CheckGPS extends Activity{public ...

2 years ago

1 answers
23 views
0
I'm going to load the information in the Android address book in db format and display it in the listview.

I'm going to load the information in the Android address book in db format and display it in the listview.How should we approach it?

2 years ago
« - 107 - »

© 2024 OneMinuteCode. All rights reserved.