Java has a concept of working with streams of data. You can say that a Java program reads sequences of bytes from an input stream (or writes into an output stream): byte after byte, character after character, primitive after primitive. Accordingly, Java defines various types of classes supporting streams, for example, InputStream or OutputStream. There… Continue reading Develop your own utility class to read data and export results in Java
Category: JAVA
Do you want to develop Android Apps in Java with 1 example?
Java is the language of choice as we can develop Android Apps in Java, the Android development system as well as the Android Studio IDE is written in Java. When it comes time to develop Android apps, the first and most popular option is Java. Java is the official language of Android development, meaning it… Continue reading Do you want to develop Android Apps in Java with 1 example?
5 Hidden Treasure to develop Cross Platform Mobile App in Java
Did you know that you can use Java to make a Cross-Platform Mobile App in Java? Yes, pinch yourself, you read that right the first time! I’ll teach you the basics of how to use your existing Java knowledge to create performant apps on Android and iOS in 12 easy steps. We will do this… Continue reading 5 Hidden Treasure to develop Cross Platform Mobile App in Java
How to Create a website using Java
How to Create a website using Java Is it possible to create a website using Java? No, you can not make or develop a website using java but it can be done using one of the technologies in Java known as JavaServer Pages (JSP). JavaServer Pages are technology released in earl 1999 by Sun Microsystems… Continue reading How to Create a website using Java
Learn how to create an interface in java
In this article, we will learn how to create an interface in java. So, let’s start – Does Java support multiple inheritances? No, Java does not support multiple inheritances but there is always an alternative approach for everything that Java does not support. For multiple inheritances, it is an approach called ‘Interface‘. Create interface in… Continue reading Learn how to create an interface in java