Answers for "java create and read txt files"

6

java create txt file

File myObj = new File("path");
myObj.createNewFile();
FileWriter myWriter = new FileWriter("path");
myWriter.write("text");
myWriter.close();
Posted by: Guest on June-25-2020
0

java how to read a text file

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

class Scratch{
    public static void main(String[] args) throws FileNotFoundException {
        Scanner input = new Scanner(new File("filename"));
        input.next();       //returns next String
        input.nextLine();   //returns next Line
        input.nextBoolean();//returns next Boolean
        input.nextInt();    //returns next Int
        input.nextDouble(); //returns next double
        ...
    }
}
Posted by: Guest on February-17-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language