Saturday, June 25, 2016

File Read

try (BufferedReader br = new BufferedReader(new FileReader(file))) {
    String line;
    while ((line = br.readLine()) != null) {
       // process the line.
    }
}

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public static void readText throws FileNotFoundException {
    Scanner scan = new Scanner(new File("samplefilename.txt"));
    while(scan.hasNextLine()){
        String line = scan.nextLine();
        //Here you can manipulate the string the way you want
    }
}

try( BufferedReader reader = new BufferedReader( ... ) ) {
  reader.lines().foreach( line -> processLine( line ) );
}

   String pathFile="/path/to/file.txt";
   String cmd="type";
   if(System.getProperty("os.name")=="Linux"){
       cmd="cat";
   }
   Process p= Runtime.getRuntime().exec(cmd+" "+pathFile);
    BufferedReader stdInput = new BufferedReader(new
         InputStreamReader(p.getInputStream()));
   System.out.println(p.getOutputStream().toString());
   String s = null;
    while ((s = stdInput.readLine()) != null) {
        System.out.println(s);
    }

No comments:

Post a Comment

உப்பு மாங்காய்

சுருக்குப்பை கிழவி. சுருக்கங்கள் சூழ் கிழவி. பார்க்கும் போதெல்லாம் கூடையுடனே குடியிருப்பாள். கூடை நிறைய குட்டி குட்டி மாங்காய்கள். வெட்டிக்க...