Skip to content

Instantly share code, notes, and snippets.

@Kobzol
Last active September 28, 2016 12:14
Show Gist options
  • Select an option

  • Save Kobzol/dcdd152afa722a5dc1db27527a89dc68 to your computer and use it in GitHub Desktop.

Select an option

Save Kobzol/dcdd152afa722a5dc1db27527a89dc68 to your computer and use it in GitHub Desktop.
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