I figured out how to import rows without using lines() method, just use while cyclus. String line = ""; while(line != null) { line = file.readLine().trim(); if(line != null) { String[] dataRow = line.split("/"); tabData.addRow(dataRow); } }
@caeli12216 жыл бұрын
thank you so much!!!!
@slewangbundle76024 жыл бұрын
what is readLine() and tabData..?
@rasmilaugusto4 жыл бұрын
how?
@emalyaditha3 жыл бұрын
@@slewangbundle7602 did you find out
@wajahatqazi55842 жыл бұрын
@@slewangbundle7602 tabData is model
@jaskeeratsingh41424 жыл бұрын
hey bro. If i only want certain column of data to be shown in the table what should I do.
@frodas4ever7 жыл бұрын
There is better way how to import your .txt file, without using support variables. Just use this: FileReader fR = new FileReader("table.txt"); BufferedReader bR = new BufferedReader(fR); Thanks for your tutorial, it helped me a lot! But I don't have lines() method :/
@felipeeduardo8422 Жыл бұрын
Thank uuu♥♥ your video saved my life😭😭😭😭😭😭😭
@duyphuong4036 жыл бұрын
Excellent. Your video so easy to understand, thank you bro.
@JRAL-khfaji Жыл бұрын
When I select the row from the table, all the information appears correctly, only the hiring and Birth data. It is decreasing or increasing the year, why???
@David440507 жыл бұрын
br.lines() doesnt exist for me :'v
@prajjvalgupta1536 жыл бұрын
my code throws this exception Exception in thread "AWT-EventQueue-0" java.lang.UnsupportedOperationException: Not supported yet. What to do?
@utubebreak58104 жыл бұрын
Object[] tableLines = br.lines().toArray(); cannot find symbol, PLEASE HELP
@flick--spadegaming96174 жыл бұрын
the surround with try catch block doesnt show up and SEVERE is shown as expression not found what to do
@firlliantonizi18026 жыл бұрын
if i use this, what is my data will be auto entry to database? or only be show in JTable?
@oliviernga99722 жыл бұрын
Merci beaucoup monsieur, ça m'a vraiment aidé. Que Dieu vous bénisse 🙏
@atifkarim97354 жыл бұрын
Bro is there any way where the column titles you read from the file can be permanently placed in the table without reading the files?
@raeganfaith56303 жыл бұрын
Can someone help me, is there a way were the data from textfile will be automatically loaded in the jframe?
@rasikapurohit6 жыл бұрын
Amazing worked smoothly
@bumburiftw4031 Жыл бұрын
Can I do this without the use of a button? I want it to do it at launch
@RandomSnippets076 жыл бұрын
How to add data from text file to table everytime we run the application without pressing any button
@_J0HnNy_2 жыл бұрын
es posible que al presionar dos veces el botón, no se repita la información de la tabla
@muskan89115 жыл бұрын
The code above is for a single text file. How do I choose among multiple text files and then import one from them?
@pyromaniacazef149 Жыл бұрын
why i cant find lines() in my java IDE?
@monaabdulrahman3021 Жыл бұрын
thank you so much , it really helped me
@TecICTian Жыл бұрын
Thank you for the clear demo
@bivekpokhrel98223 жыл бұрын
Thank you very much. Helped me alot
@pietvogel26335 жыл бұрын
Thanks for the good and clear information. Is it possible to get the complete code. (off all the classe etc.) I want also to read a excel file in a jtable do you have a instruction video with code for this??
@jameszagada89634 жыл бұрын
It works, thank you!
@katarinacardoso59793 жыл бұрын
does anyone know why mine just stops when the button is clicked?
@SudhanshuKumar-xy6xv4 жыл бұрын
U saved my project 😋😋
@miaa67444 жыл бұрын
Thank you very much,you saved my life:')
@DanielHorodenko3 жыл бұрын
TYSM man, just what i needed
@amrutasriram7516 жыл бұрын
how to import text file to Jtable by using Jfilechooser? can anyone knows?
@avinsin4 жыл бұрын
Thank you very much. it saved my lots of time. And very good knowledge also.
@1BestCsharpblog4 жыл бұрын
Glad it helped
@avinsin4 жыл бұрын
The imported value has numeric, it is imported successfully, but when sorted it does like string not numerically. Have you created any video to explain it how to do it.
@misteronsepatro70186 жыл бұрын
thank you so much you saved me
@dareusliew80346 жыл бұрын
Thank you so much bro. Don't know how to appreciate you XDD
@zillboy5 жыл бұрын
👍 Worked!
@mateuszjabonski15344 жыл бұрын
how about javaFX
@Augusto51915 жыл бұрын
why no sound??
@1BestCsharpblog5 жыл бұрын
because why not!
@ShaiAllon3 жыл бұрын
Instead of for(int i...) you can do foreach: for (String tableLine : tableLines) { String line = tableLine.toString().trim(); String[] dataRow = line.split("/"); model.addRow(dataRow); }