is it possible to get column and rows in the output
i reading a file and writing toa nother file.i want output as column and rows as given in the following format is it possible in java
Ticket| System | order
_______________________
456 | machine |678
457 | machine1 |690
correspondoing ticket no comes only in corresponding header ticket no..please explain with code..the out put file may be.txt extension
Re: is it possible to get column and rows in the output
until now i my answer is yes.. it is possible ...
but ...
if this is what the output looks like ...
Quote:
Ticket| System | order
_______________________
456 | machine |678
457 | machine1 |690
Then how is the input file looks like ?
Re: is it possible to get column and rows in the output
good response,input file may be this tupe<ticket no>456</456>
i retieve value 4s56 from program....and need to properly align
Re: is it possible to get column and rows in the output
Quote:
Originally Posted by loveme2006
input file may be this tupe<ticket no>456</456>
Are you sure you got that right? Maybe it would be better to post up an extract of the actual file.
Eighty percent of success is showing up...
W. Allen
Re: is it possible to get column and rows in the output
I posted some code a while ago to pad and align strings that maybe of some help to you.