Advertisement
Advertisement
| 05.22.2008 at 06:21AM PDT, ID: 23424254 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: |
FileInputStream fis = new FileInputStream("test.txt");
int x = fis.available();
byte b[] = new byte[x];
fis.read(b);
message = new String(b);
ParsingEngineImpl p = new ParsingEngineImpl(message);
p.parseMessage();
|