the problem is that if i declare a new FileReader e.g.
static BufferedReader ffInpBuffer = new BufferedReader( new FileReader(inp_path));
compilator says
"File: G:\projects\Java\xmlconverter\Strstore.java [line: 12]
Error: unreported exception java.io.FileNotFoundException; must be caught or declared to be thrown"
how can i do that? without try/catch-blocks(if i use them declaring, the FileReader is somewhy visible from nowhere)