Reads the contents of a file or URL and creates a Table object with its values. If a file is specified, it must be located in the sketch's "data" folder. The filename parameter can also be a URL to a file found online. The filename must either end in an extension or an extension must be specified in
(String filename)
| 5581 | * @see PApplet#loadXML(String) |
| 5582 | */ |
| 5583 | public Table loadTable(String filename) { |
| 5584 | return loadTable(filename, null); |
| 5585 | } |
| 5586 | |
| 5587 | |
| 5588 | /** |
nothing calls this directly
no test coverage detected