• 15 June

    Bet365 mobilguide: tilmelding, bonus og ansvarligt spil

    Online casinoer varierer meget i kvalitet — denne guide skærer igennem støjen og dækker kun det, der faktisk betyder noget for en problemfri oplevelse. Uanset om du foretrækker at spille pÃ¥ mobilen eller computeren, giver vi dig de præcise trin til at komme i gang med Bet365, sÃ¥ du undgÃ¥r unødvendige faldgruber. Quick Checklist Opret […]

  • 08 June

    Java Regex for alphanumeric characters

    In this post, we will see how to create regex alphanumeric which will create only alphanumeric characters. There are times when you need to validate the user’s input. It should contain only characters from a-z, A-Zor 0-9. Here is simple regex for it. ^[a-zA-Z0-9]*$ Here is the explaination of above regex. ^ : start of […]

  • 08 June

    Java – Create new file

    There are many ways to create a file in java. Creating a file is a very easy task. We will learn 5 different ways to Create a file. Using java.io.File class’s createNewFile method This is simplest and oldest way to create file.Here is simple snapshot to create a file in java. [crayon-6a2a8955b98f2603824384/] Using java.nio.file.Files from […]

  • 08 June

    Java enum with String

    In this quick tutorial, how to create String constants using enum, convert String to enum etc. You can go though complete enum tutorial here. Let’s create java enum String constants. Create java enum String [crayon-6a2a8955b9f08397461067/] That’s pretty simple. Access enum by name You can simply use . operator to access enum but if you have […]

  • 24 May

    Collections in java

    In this tutorial, we will see  about Collections in java. Collection framework is core part of java programming language. It is used in almost all the applications. Collections framework provides a way to store and retrieve the collection of elements. This framework has many interfaces and classes which makes programmer life easy. Let’s go through […]

  • Java 8 Tutorial
    20 May

    Java 8 tutorial

    In this post, we will see about Java 8 tutorial. I have written a lot of tutorials on Java 8. This is index post for all Java 8 posts. Java 8 has lots of new features which will change the way you do programming. Here is a list of features you need to know to […]

  • Java 8 Optional
    19 May

    Java 8 Optional

    In this post, we will see about Java 8 optional. Did you ever get NullPointerException as Java developer? If you are experienced Java developer, you might have got NullPointerException at some point of time. You might agree that NullPointerException is pain for novice or expert core Java developer. You have to put a lot of […]

  • 28 April

    Guia prático para registo e apostas no Qbet Casino – Passo a passo

    Criar uma conta num casino online é rápido, mas saber exatamente o que esperar em cada passo poupa tempo e frustração. Neste guia, explicamos como começar no Qbet Casino, desde o registo até ao cumprimento dos requisitos de aposta, com cálculos detalhados e dicas de segurança. Quick Checklist Confirmar que tem idade legal e reside […]

  • 25 April

    Strategy design pattern in java

    In this post, we will see about Strategy design pattern in java. Strategy design pattern allows us to change algorithm implementation at runtime.Strategy design pattern provides multiple algorithms and client can choose algorithm based on their needs with the help of composition. Strategy design pattern example Let’s understand this with the help of simple example. […]