I have a requirement where i need to display Streaming Data like Bid , Ask , Last , Change values for the Stock Quote Symbols recievied from a third party server in a Grid .
For this can i use a Jtable as the Data would be chnaging continously ??
Please share your views , thanks in advance
Yes, why not use a JTable for that matter. I guess that at some point you will have to create a SlidingWindow over your TableModel in order to avoid excessive data.
Here is a small demo example that shows one way to do it (the
RandomandTimerare just there to simulate the incoming data):