PLEASE HELP! in JTable

example of text file:joven sample table codecomputer monitor keyboardi want to display in table like "joven sample table code computer monitor keyboard"pls help..tnx in advance
[225 byte] By [SaGaRaa] at [2007-11-27 9:51:59]
# 1
learn about "Swing".
tom_jansena at 2007-7-13 0:21:12 > top of Java-index,Java Essentials,Java Programming...
# 2
ha?did you already created a JTable?
Yannixa at 2007-7-13 0:21:12 > top of Java-index,Java Essentials,Java Programming...
# 3
tnx for replyi already created a JTable but the display wasjoven sample table codecomputer monitor keyboard
SaGaRaa at 2007-7-13 0:21:12 > top of Java-index,Java Essentials,Java Programming...
# 4
can you post your code...
Yannixa at 2007-7-13 0:21:13 > top of Java-index,Java Essentials,Java Programming...
# 5

try {

File file = new File("C://sample.txt");

FileInputStream fis = new FileInputStream(file);

BufferedReader br = new BufferedReader(new InputStreamReader(fis));

while ((line = br.readLine()) != null)

{

StringTokenizer st = new StringTokenizer(line, " ,\t\r\n");

Vector row = new Vector();

while(st.hasMoreTokens())

{

String token = st.nextToken();

row.addElement(token);

}

model.addRow(row);

}

br.close();

}

catch (IOException e) {

e.printStackTrace();

}

SaGaRaa at 2007-7-13 0:21:13 > top of Java-index,Java Essentials,Java Programming...
# 6
and in your text file there is no newline between code and computer?strange...
tom_jansena at 2007-7-13 0:21:13 > top of Java-index,Java Essentials,Java Programming...
# 7
yup. any suggestion?How can i display dataof text file Horizontal?
SaGaRaa at 2007-7-13 0:21:13 > top of Java-index,Java Essentials,Java Programming...