Java BufferedReader Read loadInt(BufferedReader br)

Here you can find the source of loadInt(BufferedReader br)

Description

load Int

License

Open Source License

Declaration

public static int loadInt(BufferedReader br) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.io.BufferedReader;

import java.io.IOException;

public class Main {
    public static int loadInt(BufferedReader br) {
        return Integer.parseInt(loadString(br));
    }/*  w  w w .  j  av a2  s .c o m*/

    public static String loadString(BufferedReader br) {
        String s = "";
        try {
            s = br.readLine();
        } catch (IOException ioe) {
        }
        return s;
    }
}

Related

  1. loadDataURLs(File f, Pattern p)
  2. loadDict(InputStream io, boolean case_sensitive)
  3. loadEnrichmentHits(File file)
  4. loadIgnorList()
  5. loadInputStream(InputStream inputStream)
  6. loadIntegersFromFile(String filename)
  7. loadIntoString(InputStream is)
  8. loadJCC()
  9. loadJson(String path)