Problem of reading RDF source in SiRPAC

Anyone who is using SiRPAC and want to read a little bit bigger RDF source file 
would probably have problem with time. It takes unreasonably long while reading 
the RDF source.
The reason is in the class 'RDFSource.java'. The program does read the file 
(InputStream) byte by byte in the function 'fetchByteStream'. 
A solution could be: open a byte array buffer, say, 1k or 10k, then read from 
the InputStream to the buffer everytime, then the speed is much faster.

fang

Received on Wednesday, 20 October 1999 07:21:04 UTC