This post shows how split and join strings in Python 3.
Python 3 Write Text to File Example – Open And Close Files Too
This post shows how to write texts to a file in Python 3.
How to Run UNIX SFTP in Java To FTP File
This post shows how to run the native Unix sftp command in Java to upload files. We basically want to run the following command in Java. The Unix command is not directly translational to Java. However, we want to execute
Chapter 3: How To Write Your First Java Program
How to write your first Java program? If you’re starting out learning Java, this probably is the first question you’d ask yourself. But before writing a Java program, you need to install the Java Development Kit for your operating system,
Chapter 1: Introduction to Java as Language and Platform
When we say “Java,” we refer to the Oracle technology with two aspects – Java as a programming language and Java as a platform. Java as a programming language allows us to create Java programs, while Java as an environment
Chapter 4: Oracle JDK8 on Windows 10: Installation
This post demonstrates how to install Oracle JDK8 on Windows 10. Download JDK8 From Oracle First, go to www.google.com and search for “Java JDK 8”. Then, click the link that says “Java SE Development Kit 8 – Downloads“. Once you’re
Chapter 5: Java Classes – The Blueprints And Building Blocks
In How To Write Your First Java Program, we installed an IDE and wrote a basic Java program. We also learned about the essential components of that program’s Java source codes – the keyword class and the main method. Here
Chapter 6: Java Object And Its Properties And Behaviors
We write codes that create Java objects from Java classes. These can have properties and behaviors. Properties are data with names; while, behaviors are the actions an object can perform on its properties. Consider the following Java class without properties
Chapter 8: Java Primitives in The OOP World
Java primitives are predefined basic data types that exist in the Java programming language. We do not need to create them as we would with our custom Java classes. What Are Basic Data Types in Java? Java primitive types hold
Chapter 2: Why You Should Learn Programming With Java
In the early 90s, Sun Microsystems developed and released the Java programming language. It is a general-purpose and high-level language that can run on various operating systems, like Windows, Mac OS, and UNIX platforms. This post gives an overview of