-
Bug
-
Resolution: Not an Issue
-
P2
-
None
-
1.0.2
-
sparc
-
solaris_2.5
the file below seems to indicate a problem with datainputStream.readLine's handling of EOF conditions. Contact ###@###.### for more information.
import java.io.*;
public class TestExec {
public static void main(String args[]) {
Runtime runtime;
Process process;
InputStream dinputStream;
BufferedInputStream bufferedInputStream;
DataInputStream dataInputStream;
String line;
line=new String();
runtime = Runtime.getRuntime();
try {
process = runtime.exec("pwd");
}
catch (IOException e) {
System.out.println("IOException doing exec.");
return;
}
dinputStream = process.getInputStream();
bufferedInputStream = new BufferedInputStream(dinputStream);
dataInputStream = new DataInputStream(bufferedInputStream);
do {
try {
line = dataInputStream.readLine();
}
catch (IOException e) {
System.out.println("IOException doing readLine.");
line = null;
}
if (line != null) {
System.out.println(line);
}
} while (line != null);
}
}
import java.io.*;
public class TestExec {
public static void main(String args[]) {
Runtime runtime;
Process process;
InputStream dinputStream;
BufferedInputStream bufferedInputStream;
DataInputStream dataInputStream;
String line;
line=new String();
runtime = Runtime.getRuntime();
try {
process = runtime.exec("pwd");
}
catch (IOException e) {
System.out.println("IOException doing exec.");
return;
}
dinputStream = process.getInputStream();
bufferedInputStream = new BufferedInputStream(dinputStream);
dataInputStream = new DataInputStream(bufferedInputStream);
do {
try {
line = dataInputStream.readLine();
}
catch (IOException e) {
System.out.println("IOException doing readLine.");
line = null;
}
if (line != null) {
System.out.println(line);
}
} while (line != null);
}
}