how to make a table

currently i have a set of raw data, it's abit like below:

# ID/Type/Ori/DepDes/ArrDes/DepTime/ArrTime/Mileage/Speed

2 177 10 1 1 2 37 2104 41.1

3 10481 12 7 7 2 38 2026 38.4

6 8304 11 1 1 7 39 2126 45.3

1 2097 10 3 3 2 40 1948 34.5

4 8305 11 1 1 3 40 2126 39

7 2097 12 1 1 7 44 2048 37.5

5 8304 9 3 3 6 45 2126 37.8

10 8304 11 1 1 10 49 2126 37.9

8 48 9 7 7 8 50 1948 31.2

if i want to store this all data into a table, how do i do it? if i just use java to write the table(without using sql), is that possible to do it?

[594 byte] By [wilfrid100a] at [2007-10-3 2:58:59]
# 1
http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
TuringPesta at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...
# 2
Do you mean HTML table or GUI widget table or plain text formatted nicely in a table, or what?
paulcwa at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...
# 3
> Do you mean HTML table or GUI widget table or plain> text formatted nicely in a table, or what?Dinner table.
CeciNEstPasUnProgrammeura at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...
# 4
is a plain text format table...
wilfrid100a at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...
# 5
'\t' is a tab...
CeciNEstPasUnProgrammeura at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...
# 6
java.util.Formatter might be useful as well
paulcwa at 2007-7-14 20:48:33 > top of Java-index,Java Essentials,New To Java...