J
jufis88
Gast
Hallo!
Kann mir jemand helfen! Ich habe ein Beispiel bekommen und versuche das Beispiel zu programmieren, aber es funktioniert nicht ganz.
Mein Code:
import java.io.*;
class Byteströme{
public static InputStream is;
public static OutputStream os;
public static void main(String args[]) throws IOException {
try{
InputStream is = System.in;
OutputStream os = System.out;
int b = is.read();
while(b != -1){
os.write(b);
b = is.read();
}
}
catch(Exception e){
System.out.println("Ausgabe: " +e);
}
is.close();
os.close();
}
}
Kann mir jemand helfen! Ich habe ein Beispiel bekommen und versuche das Beispiel zu programmieren, aber es funktioniert nicht ganz.
Mein Code:
import java.io.*;
class Byteströme{
public static InputStream is;
public static OutputStream os;
public static void main(String args[]) throws IOException {
try{
InputStream is = System.in;
OutputStream os = System.out;
int b = is.read();
while(b != -1){
os.write(b);
b = is.read();
}
}
catch(Exception e){
System.out.println("Ausgabe: " +e);
}
is.close();
os.close();
}
}