Saturday, August 4, 2018

Playing with IO in Kotlin

August 04, 2018
Welcome to this post. Today I going to cover a very unusual topic. If this problem is matched with you then it will help you to save a lot of time. So let's start- Imagine you have a text file of some data and you want to format it and save the data into the JSON file. Example text file line: abbey - n. a monastery ruled by an abbot .... And you have so many lines in the text file. and your goal is separate, the word and type(part of speech) and description of the word. so the...
Read More

Saturday, August 19, 2017

Kotlin Series

August 19, 2017
kotlin
welcome to kotlin series. Kotlin Series In this series, we are basically going through some basic and advanced tutorial about kotlin language. we try to serve you best practices on those tutorials. Here is the collection of all post 1. String -  kotlin string tutorial 2. Array and loop - array and loop tutorial 3. File reader and write - kotlin...
Read More

Tuesday, August 15, 2017

Kotlin: File reader and writer

August 15, 2017
kotlin
Welcome to kotlin Series In this post, we are going to learn about kotlin IO (input or output) we basically learn about file reader and writer. In this post, we are going to write a program that takes text from the console and save it on computer hard disk as a text file. Let start- First, we are going to create a method for saving file, method name writeToFile Follow those step: 1....
Read More