SimpleCoding
Manage Cookie Consent
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
Manage options Manage services Manage {vendor_count} vendors Read more about these purposes
View preferences
Cookie Policy Privacy Policy {title}
Skip to content
SimpleCoding

SimpleCoding

  • Start Here
  • Java All Topics
    • Java Sort
    • Java Input
    • Java Output
    • Java Collection
    • Java + Mathematics
    • Java Art
    • JavaFX
  • Java Beginner
  • Java Advanced
  • Linux
  • Java Run Code Online
  • Prerequisites
  • About

Java Beginner

Java Remove Rows Smaller Than 4 Characters

November 26, 2023 by TheWriter

In this example we have String with rows some of them bigger than four characters and some of them smaller. We want to remove the smaller ones and then print the result. We use lines() method which create stream from Stream API and in which every element is a row from the string rows. Then … Read more

Categories Java All Topics, Java Beginner Tags Java, Lambda Leave a comment

Java sum of numbers bigger than 100

November 26, 2023 by TheWriter

In this example we will see how to get sum of input numbers and then compare it to 100. First we will request from the user to write how many numbers need to be added. Then we make a for cycle in which we will get every number from the user input and add it … Read more

Categories Java All Topics, Java Beginner, Java Input Tags Java Leave a comment

Java Find the Perimeter of a Rectangle

November 26, 2023November 26, 2023 by TheWriter

To find the perimeter of rectangle we need to have the height and the width. So we create Scanner and we require the user input two numbers. Then we use the formula for the perimeter of rectangle: 2 * (width + height) At the end we print the result.

Categories Java All Topics, Java Beginner Tags Java Leave a comment

Java Convert Minutes to Seconds

November 26, 2023November 26, 2023 by TheWriter

In this example we will see how to convert minutes to seconds. First we ask how many minutes we want to convert to seconds. Then we use Scanner to get the next integer from the user input. After that we multiply by 60 because every minute have 60 seconds and print the end result.

Categories Java All Topics, Java Beginner Tags Java Leave a comment

Java Introduction To Double Class

October 6, 2023May 29, 2023 by TheWriter

The Java Double class is a wrapper class that provides an object representation of the primitive data type double. It allows you to perform various operations on double values by treating them as objects. The Double class provides a set of methods that enable you to perform common operations on double values, such as converting … Read more

Categories Java All Topics, Java Beginner Tags Java Leave a comment

Java Introduction To Long Class

October 6, 2023May 29, 2023 by TheWriter

The Java Long class is a wrapper class that provides an object representation of the primitive data type long. It allows you to perform various operations on long values by treating them as objects. The Long class provides a set of methods that enable you to perform common operations on long values, such as converting … Read more

Categories Java All Topics, Java Beginner Tags Java Leave a comment

Java Introduction To Integer Class

October 6, 2023May 29, 2023 by TheWriter

The Java Integer class is a wrapper class that provides an object representation of the primitive data type int. It allows you to perform various operations on int values by treating them as objects. The Integer class provides a set of methods that enable you to perform common operations on int values, such as converting … Read more

Categories Java All Topics, Java Beginner Tags Java Leave a comment

Java Measure Time For Code Execution

October 6, 2023May 27, 2023 by TheWriter

If we want to measure time of code execution then we can get the time as long (in milliseconds) before and after specific code execution and find the difference which will give us the answer how long a code execution take. Lest see example program: And the result is:

Categories Java All Topics, Java Beginner Tags Date and Time, Java Leave a comment

Java print all time zones from ZoneId

March 18, 2023March 18, 2023 by TheWriter

In this example let’s see how to print all time zones using ZoneId. ZoneId is a class that is used to identify the rules used to convert between an Instant and a LocalDateTime. It is used extensively when we need to create ZonedDateTime. For example let’s look at the three static methods which create ZonedDateTime: … Read more

Categories Java All Topics, Java Beginner Tags Date and Time, Java Leave a comment

Java ZonedDateTime examples

March 18, 2023March 18, 2023 by TheWriter

Let’s see some examples with Java’s ZonedDateTime class. First to understand different java date and time classes from the Java 8 new Date time API lets look at them: This answer from stackoverflow point us to: So if we need automatic calculation of the zones and also differences between summer and winter time we can … Read more

Categories Java All Topics, Java Beginner Tags Date and Time, Java Leave a comment
Older posts
Page1 Page2 Page3 Next →

Topics

  • Java + Mathematics
  • Java Advanced
  • Java All Topics
  • Java Art
  • Java Beginner
  • Java Collection
  • Java Input
  • Java Output
  • Java Sort
  • JavaFX
  • Linux
  • Uncategorized

Recent Posts

  • Java Remove Rows Smaller Than 4 Characters
  • Java sum of numbers bigger than 100
  • Java Find the Perimeter of a Rectangle
  • Java Convert Minutes to Seconds
  • Java Introduction To Double Class

Recent Comments

No comments to show.
  • Privacy Policy
  • Cookie Policy (EU)
© 2025 SimpleCoding • Built with GeneratePress