1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
import java.io.*;
import javax.swing.JOptionPane;
class JavaManagerStreamGobbler extends Thread
{
InputStream is;
String type;
JavaManagerStreamGobbler(InputStream is, String type)
{
this.is = is;
this.type = type;
}
public void run()
{
try
{
InputStream in = new BufferedInputStream(
new ProgressMonitorInputStream(
parentComponent,
"Reading " + fileName,
new FileInputStream(fileName)));
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line=null;
while ( (line = br.readLine()) != null)
System.out.println(type + ">" + line);
// JOptionPane.showMessageDialog(null,line, "Importing Data From Peregrine...", JOptionPane.INFORMATION_MESSAGE);
} catch (IOException ioe)
{
ioe.printStackTrace();
}
}
} |
Partager