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
101 views
0
BLE communication in Java

This is my first question post.We ask for your help.I would like to communicate BLE with iOS device using Java language.Assume Java (peripheral) iOS (central).I'm looking into a lot of things, but I'v...

1 years ago

1 answers
32 views
0
I have a question about the array in the Java constructor.

What I'm trying to do is 1. Configure an array of Constructor2 as a field for ConstructorTest2_2.2. Within the main function of Constructor2_3, generate ConstructorTest2_2 and set the value in the fie...

1 years ago

1 answers
31 views
0
Apache Tika Has Continuous Characters in PDF Body

I'm parsing PDF in Java and Apache Tika.Most PDFs can be loaded successfully, but they can cause parsing errors or Even if you can parse it, the characters in the body are continuous.What I would like...

1 years ago

1 answers
79 views
0
Java and Tomcat versions

I would like to develop a simple screen using Pleiades in Java.So I have a question, if I want to develop it in Java version 1.8, is there no problem with Tomcat version 7.0?Also, should I set the com...

1 years ago

2 answers
31 views
0
Information About Asynchronous Sending for Axis2

I have a question about Asynchronous transmission of Axis2.Simple services (services that simply return strings) from the following sources:We have created a client program that uses the asynchronous ...

1 years ago

1 answers
36 views
0
Symptoms such as continuous characters in PDF sentences read by Apache Tika

In Apache Tika, use Java and when loading PDFWhen you open a PDF in the viewer, you can see ⇒ (1) DB for Firin Volcanic Mountain is displayed.(Bold with underbar) However, if you take it in Tika, as s...

1 years ago

1 answers
33 views
0
Exception in libGDX

I'm thinking of using libGDX in eclipse, but when I ran the default class (badlogic image display), I got the following exceptions:Exception in thread LWJGL Application java.lang.NullPointerException ...

1 years ago

1 answers
109 views
0
Do not want to embed fonts in PDFs generated by Aspose.Cells

Aspose.Cells for Java (ver 8.5.0) is used to generate PDFs from Excel templates.This Excel template uses MS-like fonts such as MSP Gothic.The application is a web application and the AP server is Wild...

1 years ago

1 answers
32 views
0
Does the rewriting of class files violate any rules?

You can edit class files using specialized tools such as ASM or a binary editor.Depending on how you do it, you can make it inconsistent or destroy the structure of your files.I have a question, is it...

1 years ago

1 answers
84 views
0
Cannot create folder on Android device external storage

1 String folder=Environment.getExternalStorageDirectory().toString()+/data;2 File dir = new File (folder);3 // Create without folder4 if(!dir.exists()){5 boolean result=dir.mkdirs();6 if(!result){7 re...

1 years ago
« - 16 - »

© 2024 OneMinuteCode. All rights reserved.