word1 word2 word3

how can i create 3 vectors for store one word
System.out.println("String " + vecCh1 + vecCh2 + vecCh3 );

FileInputStream file = new FileInputStream("test");
BufferedReader br = new BufferedReader(new InputStreamReader(file));

char ch = (char)br.read();
char vecCh1[] = new char[10];
int chRead1 = br.read(vecCh1, 1, 5);

char ch = (char)br.read();
char vectCh2[] = new char[10];
int chRead2 = br.read(vecCh2, 7, 5);

.....
i'm not a java programmer .. it's a good direction's ?
for a static string i hope so .. but if string it's dynamic i need read
space, ... your's suggestions is ...


DANIEL
[EMAIL PROTECTED]


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to