VOOZH about

URL: https://www.javacodegeeks.com/author/yatin-batra/page/36

⇱ Yatin Batra, Author at Java Code Geeks - Page 36 of 73


  • Core Java👁 Image
    Yatin BatraMarch 14th, 2025
    0 843

    Fix ClassCastException Ljava.lang.Object to Ljava.lang.Integer

    In Java, the ClassCastException occurs when we attempt to cast an object to a subclass of which it is not…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 12th, 2025
    0 1,187

    Java ServerSocket Simple HTTP Server Example

    An HTTP server is responsible for serving resources to a requesting client. While Java offers several production-grade web servers, understanding…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 12th, 2025
    0 627

    Java JDBC Execute Multiple Statements Example

    When working with databases in Java, it’s common to execute multiple SQL statements in a single execution. This improves efficiency…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 10th, 2025
    0 565

    Adding a Non-Null Value to a Map in Java

    When working with Java’s Map data structure, it is common to check whether a value is null before inserting it…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 10th, 2025
    0 264

    Comparing isA() and anyObject() Matchers in EasyMock

    EasyMock is a widely used Java framework for creating mock objects in unit tests. It provides various matchers to define…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 7th, 2025
    0 1,239

    Java Switch Greater Than Or Equal Condition Example

    The switch statement in Java is a control flow statement that handles multiple conditions efficiently. However, it is typically used…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 7th, 2025
    0 1,171

    Java LinkedList toString() Print Example

    The LinkedList class in Java is a part of the java.util package and provides a way to store ordered elements…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 6th, 2025
    0 1,072

    Java Sort Alphanumeric Strings Example

    Sorting alphanumeric strings is a common requirement in applications where data contains both letters and numbers. Java provides built-in sorting…

    Read More »
  • Core Java👁 Image
    Yatin BatraMarch 5th, 2025
    0 474

    Show Year In Two Digits Format In Java Date

    In Java, extracting the last two digits of the current year is a common requirement in date-related operations. This can…

    Read More »
  • First
  • ...
  • 20
  • 30
  • «
  • 35
  • 36
  • 37
  • »
  • 40
  • 50
  • ...
  • Last
Back to top button
Close