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
@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😭😭😭😭😭😭😭
@oliviernga99722 жыл бұрын
Merci beaucoup monsieur, ça m'a vraiment aidé. Que Dieu vous bénisse 🙏
@jaskeeratsingh41423 жыл бұрын
hey bro. If i only want certain column of data to be shown in the table what should I do.
@duyphuong4036 жыл бұрын
Excellent. Your video so easy to understand, thank you bro.
@TecICTian Жыл бұрын
Thank you for the clear demo
@monaabdulrahman3021 Жыл бұрын
thank you so much , it really helped me
@bumburiftw4031 Жыл бұрын
Can I do this without the use of a button? I want it to do it at launch
@ShaiAllon2 жыл бұрын
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); }
@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???
@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.
@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??
@rasikapurohit6 жыл бұрын
Amazing worked smoothly
@bivekpokhrel98223 жыл бұрын
Thank you very much. Helped me alot
@miaa67444 жыл бұрын
Thank you very much,you saved my life:')
@firlliantonizi18026 жыл бұрын
if i use this, what is my data will be auto entry to database? or only be show in JTable?
@David440507 жыл бұрын
br.lines() doesnt exist for me :'v
@muskan89115 жыл бұрын
The code above is for a single text file. How do I choose among multiple text files and then import one from them?
@SudhanshuKumar-xy6xv4 жыл бұрын
U saved my project 😋😋
@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?
@flick--spadegaming96173 жыл бұрын
the surround with try catch block doesnt show up and SEVERE is shown as expression not found what to do
@pyromaniacazef149 Жыл бұрын
why i cant find lines() in my java IDE?
@utubebreak58104 жыл бұрын
Object[] tableLines = br.lines().toArray(); cannot find symbol, PLEASE HELP
@prajjvalgupta1536 жыл бұрын
my code throws this exception Exception in thread "AWT-EventQueue-0" java.lang.UnsupportedOperationException: Not supported yet. What to do?
@jameszagada89634 жыл бұрын
It works, thank you!
@_J0HnNy_2 жыл бұрын
es posible que al presionar dos veces el botón, no se repita la información de la tabla
@DanielHorodenko3 жыл бұрын
TYSM man, just what i needed
@misteronsepatro70185 жыл бұрын
thank you so much you saved me
@RandomSnippets075 жыл бұрын
How to add data from text file to table everytime we run the application without pressing any button
@raeganfaith56303 жыл бұрын
Can someone help me, is there a way were the data from textfile will be automatically loaded in the jframe?
@johansebastianariasmanriqu2786 Жыл бұрын
I love you Blessd
@katarinacardoso59793 жыл бұрын
does anyone know why mine just stops when the button is clicked?
@Tobi12003 жыл бұрын
Thank you so much!
@dareusliew80346 жыл бұрын
Thank you so much bro. Don't know how to appreciate you XDD
@jopa14742 жыл бұрын
I love you bro
@mateuszjabonski15344 жыл бұрын
how about javaFX
@Swapnil_V4 жыл бұрын
Do this on Eclipse
@amrutasriram7515 жыл бұрын
how to import text file to Jtable by using Jfilechooser? can anyone knows?