Last active
September 28, 2016 12:14
-
-
Save Kobzol/dcdd152afa722a5dc1db27527a89dc68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String[][] tabulka = new String[15][5]; | |
| try (BufferedReader br = new BufferedReader(new FileReader("pocasi.csv"))) | |
| { | |
| String s; | |
| int radek = 0; | |
| while ((s = br.readLine()) != null) | |
| { | |
| tabulka[radek++] = s.split(";"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment